maxLessThan()
Checks whether the value is greater than the maximum range of a specified `Range` object
Last updated
// Example usage.
import { Range } from '@angular-package/range';
// Create new instance.
const range = new Range(4, 27);
// Returns true.
range.maxLessThan(28);
// Returns false.
range.maxLessThan(27);