BiIntPredicate interface

Пакет: com.hypixel.hytale.function.predicate

Файл: com/hypixel/hytale/function/predicate/BiIntPredicate.java

Методы (1)

МодификаторыВозвратСигнатура
abstract boolean testboolean test(int var1, int var2)

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.function.predicate;

@FunctionalInterface
class="kw">public class="kw">interface BiIntPredicate {
   boolean test(int var1, int var2);
}