inInclusiveRange function

Matcher inInclusiveRange (num low, num high)

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

Implementation

Matcher inInclusiveRange(num low, num high) =>
    new _InRange(low, high, true, true);