NullableBooleanUtils extension

Extensions on nullable Boolean to provide logical operations.

on

Methods

and(bool? other) bool?

Available on bool?, provided by the NullableBooleanUtils extension

Performs AND operation with another nullable boolean.
or(bool? other) bool?

Available on bool?, provided by the NullableBooleanUtils extension

Performs OR operation with another nullable boolean.
xor(bool? other) bool?

Available on bool?, provided by the NullableBooleanUtils extension

Performs XOR operation with another nullable boolean.