SimpleFilter

fun interface SimpleFilter<in T>

Functions

Link copied to clipboard
abstract suspend operator fun invoke(o: T): Boolean
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
operator fun <T> SimpleFilter<T>.not(): SimpleFilter<T>

Reverse results of this

Link copied to clipboard
infix operator fun <T> SimpleFilter<T>?.plus(other: SimpleFilter<T>?): SimpleFilter<T>

Makes an OR (||) operation between this and other

Link copied to clipboard
infix operator fun <T> SimpleFilter<T>?.times(other: SimpleFilter<T>?): SimpleFilter<T>

Makes an AND (&&) operation between this and other