js.util.function.AnyKeyPredicate Maven / Gradle / Ivy
package js.util.function;
import js.lang.Any;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSObject;
@JSFunctor
@FunctionalInterface
public interface AnyKeyPredicate extends JSObject {
boolean test(T value, K key, A parent);
}