Package-level declarations

Functions

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

ANDs all the given Specifications together.

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

ANDs the given Specification to the current one.

Link copied to clipboard
fun <T : Any> or(vararg specification: Specification<T>): Specification<T>

ORs all the given Specifications together.

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

ORs the given Specification to the current one.