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

member(_:)

Determines whether a given object is present in the set, and returns that object if it is. 与えられたオブジェクトが集合の中に存在するかどうか判定します、そしてそれが存在するならばそのオブジェクトを返します。

Declaration 宣言

func member(_ object: Any) -> Any?

Parameters パラメータ

object

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

Return Value 戻り値

Returns an object equal to object if it's present in the set, otherwise nil. objectと等しいオブジェクトを、もしそれが集合の中に存在するならば、そうでなければnilを返します。

Discussion 議論

Each element of the set is checked for equality with object until a match is found or the end of the set is reached. Objects are considered equal if isEqual(_:) returns true. この集合の各要素はobjectとの同等性を調べられます、ある合致が見つけられるか、または集合の終わりが到達されるまで。オブジェクトは、isEqual(_:)trueを返すならば等しいとみなされます。

See Also 参照

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