VarioqubTestIDSet
public struct VarioqubTestIDSet
The VarioqubTestIDSet struct that represents a set of VarioqubTestIDs.
-
The raw value of the VarioqubTestID set.
Declaration
Swift
public var set: Set<VarioqubTestID>
-
Initializes an empty set.
Declaration
Swift
public init()
-
Initializes the class with a set of the
VarioqubTestID
values.Declaration
Swift
public init(testIdSet: Set<VarioqubTestID>)
Parameters
testIdSet
The set of the
VarioqubTestID
values. -
Initializes the class with a sequence of the
VarioqubTestID
values.Declaration
Swift
public init<T>(seq: T) where T : Sequence, T.Element == VarioqubTestID
Parameters
seq
The sequence of the
VarioqubTestID
values.