Contents

init(objects:count:)

Initializes a newly allocated set with a specified number of objects from a given C array of objects.

Declaration

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 ordered set.

  • cnt:

    The number of objects from objects to add to the new ordered set.

Return Value

An initialized ordered set containing cnt objects from the list of objects specified by objects. The returned set might be different than the original receiver.

Discussion

This method is a designated initializer of NSOrderedSet.

See Also

Related Documentation

Initializing an Ordered Set