Class Subspace :: sus :: ops :: Range
A (half-open) range bounded inclusively below and exclusively above
(start..end).
The range start..end contains all values with start <= x < end. It is
empty if start >= end.
A Range"start..end"_r.
Methods
Returns true if item is contained in the range.
Return a new Range that starts at where the original Range did and ends at
t.
Returns the end of the RangeBounds, exclusive of its own value.
Part of the sus::ops::RangeBounds
Returns true if the range contains no items.
The range is empty if either side is incomparable, such as f32::NAN.
Return a new Range that starts at t and ends where the original Range
did.
Returns the beginning of the RangeBounds, inclusive of its own value.
Part of the sus::ops::RangeBounds