Instance Subscriptscinfu.swiftsoup 2.8.7SwiftSoup
subscript(_:)
OrderedSet.swift:366subscript(index: Index) -> T { get set }
subscript(index: Index) -> T { get set }
where T:Hashable
import SwiftSoup
class OrderedSet<T> where T : Hashable
An ordered, unique collection of objects.
typealias Index = Int
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
var count: Int { get }
var description: String { get }
var endIndex: Int { get }
var first: T? { get }
var isEmpty: Bool { get }
var startIndex: Int { get }
func index(after i: Int) -> Int
func makeIterator() -> Iterator
typealias Iterator = OrderedSetGenerator<T>