Predicate

fun interface Predicate<T : Any>

Predicate interface.

Parameters

T

The type of the predicate value.

Inheritors

Functions

Link copied to clipboard
abstract fun apply(value: T): Boolean

Applies the predicate against a value.