File

packages/java.lang.native.operator/src/jequality.ts

Methods

eq
eq(expr: T)

Emulate the operator ==

Returns: any
ne
ne(expr: T)

Emulate the operator !=

Returns: any
import { Jboolean } from '@j2se-js/java.lang';

export interface JEquality<T> {

  /** Emulate the operator == */
  eq(expr: T): Jboolean;

  /** Emulate the operator != */
  ne(expr: T): Jboolean;

}

results matching ""

    No results matching ""