typealias SetIterator<Element> = Set<Element>.Iterator where Element : Hashable
ss11SetIteratoraWhat are these?
ss11SetIteratora
FNV24: [20FRG]
import Swift
@frozen struct Set<Element> where Element : Hashable
An unordered collection of unique elements.
@frozen struct Iterator
An iterator over the members of a Set<Element>.
Set<Element>
protocol Hashable : Equatable
A type that can be hashed into a Hasher to produce an integer hash value.
Hasher