infix
operator
..
<
{
associativity
none
precedence
135
}
Declarations
Forms a half-open range that contains start
, but not end
.
Requires: start <= end
.
Declaration
func
..
<
<
Pos
:
ForwardIndexType
where
Pos
:
Comparable
>
(
start
:
Pos
,
end
:
Pos
) -
>
Range
<
Pos
>
Forms a half-open range that contains minimum
, but not
maximum
.
Declaration
func
..
<
<
Pos
:
ForwardIndexType
>
(
minimum
:
Pos
,
maximum
:
Pos
) -
>
Range
<
Pos
>
Returns a half-open interval from
start
toend
.Declaration
func
..
<
<
Bound
:
Comparable
>
(
start
:
Bound
,
end
:
Bound
) -
>
HalfOpenInterval
<
Bound
>