packages/java.lang.native.operator/src/junary.ts
plus |
plus()
|
Emulate the operator +
Returns:
T
|
inc |
inc()
|
Emulate the operator ++
Returns:
T
|
dec |
dec()
|
Emulate the operator --
Returns:
T
|
minus |
minus()
|
Emulate the operator -
Returns:
T
|
export interface JUnary<T> {
/** Emulate the operator + */
plus(): T;
/** Emulate the operator ++ */
inc(): T;
/** Emulate the operator -- */
dec(): T;
/** Emulate the operator - */
minus(): T;
}