SocketIOClientConfiguration
public struct SocketIOClientConfiguration : ExpressibleByArrayLiteral, Collection, MutableCollection
An array-like type that holds SocketIOClientOptions
-
Iterator type.
Declaration
Swift
public typealias Iterator = Array<SocketIOClientOption>.Iterator -
Type of element stored.
Declaration
Swift
public typealias Element = SocketIOClientOption -
SubSequence type.
Declaration
Swift
public typealias SubSequence = Array<SocketIOClientOption>.SubSequence -
Index type.
Declaration
Swift
public typealias Index = Array<SocketIOClientOption>.Index
-
The start index of this collection.
Declaration
Swift
public var startIndex: Index -
The end index of this collection.
Declaration
Swift
public var endIndex: Index -
Whether this collection is empty.
Declaration
Swift
public var isEmpty: Bool -
The number of elements stored in this collection.
Declaration
Swift
public var count: Index.Stride -
The first element in this collection.
Declaration
Swift
public var first: Element?
-
Creates a new
SocketIOClientConfigurationfrom an array literal.Declaration
Swift
public init(arrayLiteral elements: Element...)
SocketIOClientConfiguration Struct Reference