eqInt property

Eq<int> eqInt
getter/setter pair

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

Implementation

static Eq<int> eqInt = _Eq((x, y) => x == y);