Instance Propertyscinfu.swiftsoup 2.8.7SwiftSoup
startIndex
OrderedSet.swift:358var startIndex: Int { get }
var startIndex: Int { get }
where T:Hashable
import SwiftSoup
class OrderedSet<T> where T : Hashable
An ordered, unique collection of objects.
@frozen struct Int
A signed integer value type.
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 }
subscript(index: Index) -> T { get set }
func index(after i: Int) -> Int
func makeIterator() -> Iterator
typealias Iterator = OrderedSetGenerator<T>