And

data class And<T : Any>(val operands: Set<BooleanExpression<T>>) : BooleanExpression<T>

Constructors

Link copied to clipboard
fun <T : Any> And(vararg operands: BooleanExpression<T>)
Link copied to clipboard
fun <T : Any> And(operands: Set<BooleanExpression<T>>)

Functions

Link copied to clipboard
open override fun simplify(): BooleanExpression<T>

This is not super well defined but works well enough for our simple use cases

Properties

Link copied to clipboard
val operands: Set<BooleanExpression<T>>