init(array:)
Initializes a newly allocated set with the objects that are contained in a given array.
Declaration
convenience init(array: [Any])Parameters
- array:
An array of objects to add to the new set. If the same object appears more than once in
array, it is represented only once in the returned set. Each object receives a Retain message as it is added to the set.
Return Value
An initialized set with the contents of array. The returned set might be different than the original receiver.