Negation of aBoolean singleton type.
Negation of aBoolean singleton type.
import compiletime.ops.boolean.*val notFalse: ![false] = trueval notTrue: ![true] = falseConjunction of twoBoolean singleton types.
Conjunction of twoBoolean singleton types.
import compiletime.ops.boolean.*val a: true && true = trueval b: false && true = falseExclusive disjunction of twoBoolean singleton types.
Exclusive disjunction of twoBoolean singleton types.
import compiletime.ops.boolean.*val a: true ^ true = falseval b: false ^ true = trueDisjunction of twoBoolean singleton types.
Disjunction of twoBoolean singleton types.
import compiletime.ops.boolean.*val a: true || false = trueval b: false || false = false