init(objects:count:)
Creates and returns a set containing a specified number of objects from a given C array of objects.
Declaration
convenience init(objects: UnsafePointer<AnyObject>, count cnt: Int)Parameters
- objects:
A C array of objects to add to the new ordered set.
If the same object appears more than once in objects, it is added only once to the returned ordered set. Each object receives a retain message as it is added to the set.
- cnt:
The number of objects from objects to add to the new set.
Return Value
A new ordered set containing cnt objects from the list of objects specified by objects.