Contents

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

Return Value

An initialized ordered set with the contents of array. The returned ordered set might be different than the original receiver.

See Also

Initializing an Ordered Set