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

firstIndex(of:)

Returns the index of the given element in the set, or nil if the element is not a member of the set. 与えられた要素の集合の中のインデックス、またはその要素が集合のメンバでないならばnilを返します。

Declaration 宣言

func firstIndex(of member: Element) -> Set<Element>.Index?

Parameters パラメータ

member

An element to search for in the set. この集合において捜される要素。

Return Value 戻り値

The index of member if it exists in the set; otherwise, nil. それがこの集合に含まれるならばmemberのインデックス;そうでなければ、nil

Discussion 解説

Complexity: O(1) 計算量:O(1)

See Also 参照

Finding Elements 要素を見つける