Skip to main content
Module

x/tstl/numeric/INegatable.ts

TypeScript-STL (Standard Template Library, migrated from C++)
Go to Latest
File
//================================================================ /** * @packageDocumentation * @module std *///================================================================export interface INegatable<Ret>{ negate(): Ret;}