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
start
and ends atend
. -
Return a new Range that starts at
t
and has no end. -
Return a new Range that has no start and ends at
t
. -
Constructs an object of type
T
that satisfiesTryDefault
(andTry
) with its default success value. -
Constructs an object of type
T
that satisfiesTry
from a value that represents success forT
. -
Unwraps from the
Try
type that is currently in its success state (try_is_success
would return true) to produce its success value. -
Determines if a type
T
that satisfiesTry
represents success in its current state.