Instance Method インスタンスメソッド

contains(_:)

Returns a Boolean value that indicates whether a given object is present in the set. あるブール値を返します、それは与えられたオブジェクトが集合の中に存在するかどうかを指し示します。

Declaration 宣言

func contains(_ anObject: Any) -> Bool

Parameters パラメータ

anObject

An object to look for in the set. その集合の中で捜すあるオブジェクト。

Return Value 戻り値

true if anObject is present in the set, otherwise false. true、もしanObjectが集合の中に存在するならば、そうでなければfalse

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. この集合の各要素はanObjectとの同等性を調べられます、ある合致が見つけられるか、または集合の終わりが到達されるまで。オブジェクトは、isEqual(_:)trueを返すならば等しいとみなされます。

See Also 参照

Accessing Set Members 集合メンバにアクセスする