infix
operator
... {
associativity
none
precedence
135
}
Declarations
Forms a closed range that contains both start
and end
.
Requires: start <= end
.
Declaration
func
...
<
Pos
:
ForwardIndexType
where
Pos
:
Comparable
>
(
start
:
Pos
,
end
:
Pos
) -
>
Range
<
Pos
>
Forms a closed range that contains both minimum
and maximum
.
Declaration
func
...
<
Pos
:
ForwardIndexType
>
(
minimum
:
Pos
,
maximum
:
Pos
) -
>
Range
<
Pos
>
Returns a closed interval from
start
throughend
.Declaration
func
...
<
Bound
:
Comparable
>
(
start
:
Bound
,
end
:
Bound
) -
>
ClosedInterval
<
Bound
>