inExclusiveRange function

Matcher inExclusiveRange (num low, num high)

Returns a matcher which matches if the match argument is greater than low and less than high.

Implementation

Matcher inExclusiveRange(num low, num high) =>
    new _InRange(low, high, false, false);