The position of an element in a set.
SDK
- Xcode 8.3+
Framework
- Swift Standard Library
Declaration
@frozen struct Index
The position of an element in a set.
SDK
Framework
@frozen struct Index
var hash Value: Int
The hash value.
func hash(into: inout Hasher)
Hashes the essential components of this value by feeding them into the given hasher.
static func != (Set<Element>.Index, Set<Element>.Index) -> Bool
Returns a Boolean value indicating whether two values are not equal.
static func ... (Set<Element>.Index) -> Partial Range From<Set<Element>.Index>
Returns a partial range extending upward from a lower bound.
static func ... (Set<Element>.Index) -> Partial Range Through<Set<Element>.Index>
Returns a partial range up to, and including, its upper bound.
static func ... (Set<Element>.Index, Set<Element>.Index) -> Closed Range<Set<Element>.Index>
Returns a closed range that contains both of its bounds.
static func ..< (Set<Element>.Index) -> Partial Range Up To<Set<Element>.Index>
Returns a partial range up to, but not including, its upper bound.
static func ..< (Set<Element>.Index, Set<Element>.Index) -> Range<Set<Element>.Index>
Returns a half-open range that contains its lower bound but not its upper bound.
static func < (Set<Element>.Index, Set<Element>.Index) -> Bool
Returns a Boolean value indicating whether the value of the first argument is less than that of the second argument.
static func <= (Set<Element>.Index, Set<Element>.Index) -> Bool
Returns a Boolean value indicating whether the value of the first argument is less than or equal to that of the second argument.
static func == (Set<Element>.Index, Set<Element>.Index) -> Bool
Returns a Boolean value indicating whether two values are equal.
static func > (Set<Element>.Index, Set<Element>.Index) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argument.
static func >= (Set<Element>.Index, Set<Element>.Index) -> Bool
Returns a Boolean value indicating whether the value of the first argument is greater than or equal to that of the second argument.
struct Set .Iterator
An iterator over the members of a Set<Element>
.