Subscript

subscript(_:)

Returns the object at the specified index of the set. 集合の指定されたインデックスでのオブジェクトを返します。

Declaration 宣言

subscript(idx: Int) -> Any { get }

Parameters パラメータ

index

The object located at index. インデックスで位置するオブジェクト。

Return Value 戻り値

If index is beyond the end of the ordered set (that is, if index is greater than or equal to the value returned by count), an rangeException is raised. indexが順序集合の終わりを越えるならば(すなわち、インデックスがcountによって返される値より大きいか等しいならば)、rangeExceptionが引き起こされます。

Discussion 議論

This method is the same as object(at:). このメソッドはobject(at:)と同じです。

See Also 参照

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