Operator: ...

  • infix operator ... {
  •                   associativity none
  •                   precedence 135
  •                   }

Declarations

func ... <Bound : Comparable>(_: Bound, end: Bound)

Returns a closed interval from start through end.

Declaration

func ... <Pos : ForwardIndexType where Pos : Comparable>(_: Pos, end: Pos)

Forms a closed range that contains both start and end. Requires: start <= end.

Declaration

func ... <Pos : ForwardIndexType>(_: Pos, maximum: Pos)

Forms a closed range that contains both minimum and maximum.

Declaration