Class Subspace :: sus :: ops :: RangeFull
An unbounded range (..
).
RangeFull is primarily used as a slicing index. It cannot serve as an Iterator because it doesn't have a starting point.
A RangeFull".."_r
.
Methods
Returns true if item
is contained in the range. For RangeFull it is
always true.
Return a new Range that has no start and ends at t
.
Returns None
for the end of the RangeBounds.
Part of the sus::ops::RangeBounds
Return a new Range that starts at t
and has no end.
Returns None
for the start of the RangeBounds.
Part of the sus::ops::RangeBounds