apuliasoft/j2se-js

View on GitHub
packages/java.lang.native.operator/src/junary.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface JUnary<T> {

  /** Emulate the operator + */
  plus(): T;

  /** Emulate the operator ++ */
  inc(): T;

  /** Emulate the operator -- */
  dec(): T;

  /** Emulate the operator - */
  minus(): T;
}