eqBool property

Eq<bool> eqBool
getter/setter pair

Instance of Eq for bool using the standard == operator.

Implementation

static Eq<bool> eqBool = _Eq((x, y) => x == y);