Classes
-
A (half-open) range bounded inclusively below and exclusively above (
start..end). -
A range only bounded inclusively below (
start..). -
An unbounded range (
..). -
A range only bounded exclusively above (
..end). -
Functions
-
Return a new Range that starts at
startand ends atend. -
Return a new Range that starts at
tand has no end. -
Return a new Range that has no start and ends at
t. -
Constructs an object of type
Tthat satisfiesTryDefault(andTry) with its default success value. -
Constructs an object of type
Tthat satisfiesTryfrom a value that represents success forT. -
Unwraps from the
Trytype that is currently in its success state (try_is_successwould return true) to produce its success value. -
Determines if a type
Tthat satisfiesTryrepresents success in its current state.