Schnittstelle HashTable.OnEqualFunc

Umschließende Klasse:
HashTable
Funktionsschnittstelle:
Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.

@FunctionalInterface public static interface HashTable.OnEqualFunc
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    boolean
    Specifies the type of a function used to test two values for
    equality.
  • Methodendetails

    • onEqualFunc

      boolean onEqualFunc(CallbackHandler __self, @Nullable Pointer a, @Nullable Pointer b)
      Specifies the type of a function used to test two values for
      equality. The function should return %TRUE if both values are equal
      and %FALSE otherwise.
      Parameter:
      a - a value
      b - a value to compare with
      Gibt zurück:
      %TRUE if @a = @b; %FALSE otherwise