2 summary:: Comparable value in a linear continuum
6 Magnitudes represent values along a linear continuum which can be compared against each other.
10 returns:: a link::Classes/Boolean:: whether the receiver is less than strong::aMagnitude::.
13 returns:: a link::Classes/Boolean:: whether the receiver is less than or equal to strong::aMagnitude::.
16 returns:: a link::Classes/Boolean:: whether the receiver is greater than strong::aMagnitude::.
19 returns:: a link::Classes/Boolean:: whether the receiver is greater than or equal to strong::aMagnitude::.
22 returns:: the minimum of the receiver and aMagnitude.
25 returns:: the maximum of the receiver and aMagnitude.
28 If the receiver is less than minVal then answer minVal, else if the receiver is greater than maxVal then answer maxVal, else answer the receiver.
30 method:: inclusivelyBetween
31 returns:: whether the receiver is greater than or equal to minVal and less than or equal to maxVal.
33 method:: exclusivelyBetween
34 returns:: whether the receiver is greater than minVal and less than maxVal.