Package-level declarations

Functions

Link copied to clipboard
fun <T : Any> and(vararg predicateSpecification: PredicateSpecification<T>): PredicateSpecification<T>

ANDs all the given PredicateSpecifications together.

Link copied to clipboard
infix fun <T : Any> PredicateSpecification<T>.and(other: PredicateSpecification<T>): PredicateSpecification<T>

ANDs the given PredicateSpecification to the current one.

Link copied to clipboard
fun <T : Any> or(vararg predicateSpecification: PredicateSpecification<T>): PredicateSpecification<T>

ORs all the given PredicateSpecifications together.

Link copied to clipboard
infix fun <T : Any> PredicateSpecification<T>.or(other: PredicateSpecification<T>): PredicateSpecification<T>

ORs the given PredicateSpecification to the current one.