addingObjects(from:)
Returns a new set formed by adding the objects in a given set to the receiving set.
Declaration
func addingObjects(from other: Set<AnyHashable>) -> Set<AnyHashable>Parameters
- other:
The set of objects to add to the receiving set.
Return Value
A new set formed by adding the objects in other to the receiving set.