blob: 38f674d885b66e0ab36141824bf9f9c4ef9bad45 (
plain)
1
2
3
4
5
6
7
8
|
Number::Tolerant creates a number-like object whose value refers to a
range of possible values, each equally acceptable. It overloads
comparison operations to reflect this.
I use this module to simplify the comparison of measurement results to
specified tolerances.
reject $product unless $measurement == $specification;
|