Contents

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 set. If the same object appears more than once in objects, it is added only once to the returned 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 set containing cnt objects from the list of objects specified by objects.

See Also

Creating a Set