Contents

<(_:_:)

Returns a Boolean value indicating whether the first tuple is ordered before the second in a lexicographical ordering.

Declaration

func < (lhs: (), rhs: ()) -> Bool

Parameters

  • lhs:

    An empty tuple.

  • rhs:

    An empty tuple.

Discussion

An arity zero tuple is never strictly before another arity zero tuple in a lexicographical ordering.

See Also

Tuple Comparison