SimpleFilter

fun interface SimpleFilter<in T>

Functions

Link copied to clipboard
abstract suspend operator fun invoke(o: T): Boolean

Extensions

Link copied to clipboard
fun <T> SimpleFilter<T>.listAll(): SimpleFilter<Iterable<T>>
Link copied to clipboard
fun <T> SimpleFilter<T>.listAny(): SimpleFilter<Iterable<T>>
Link copied to clipboard
fun <T> SimpleFilter<T>.listNone(): SimpleFilter<Iterable<T>>
Link copied to clipboard
operator fun <T> SimpleFilter<T>.not(): SimpleFilter<T>

Reverse results of this

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

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

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

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