struct
FlattenCollectionIndex
<
BaseElements
where
BaseElements
:
Collection
,
BaseElements
.
Iterator
.
Element
:
Collection
>
Inheritance |
Comparable, Equatable
View Protocol Hierarchy →
|
---|---|
Import |
|
Instance Methods
Returns a Boolean value indicating whether the value of the first argument is less than that of the second argument.
This function is the only requirement of the Comparable
protocol. The
remainder of the relational operator functions are implemented by the
standard library for any type that conforms to Comparable
.
Parameters: lhs: A value to compare. rhs: Another value to compare.
Declaration
func
<
(
lhs
:
FlattenCollectionIndex
<
BaseElements
>
,
rhs
:
FlattenCollectionIndex
<
BaseElements
>
) -
>
Bool
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values a
and b
,
a == b
implies that a != b
is false
.
Parameters: lhs: A value to compare. rhs: Another value to compare.
Declaration
func
==(
lhs
:
FlattenCollectionIndex
<
BaseElements
>
,
rhs
:
FlattenCollectionIndex
<
BaseElements
>
) -
>
Bool
A position in a
FlattenCollection
.