contains(_:)
Returns a Boolean value that indicates whether a given object is present in the set.
Declaration
func contains(_ anObject: Any) -> BoolParameters
- anObject:
An object to look for in the set.
Return Value
Discussion
Each element of the set is checked for equality with anObject until a match is found or the end of the set is reached. Objects are considered equal if isEqual(_:) returns true.