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

objects(at:)

Returns the objects in the ordered set at the specified indexes. 指定されたインデックスでの順序集合の中のオブジェクトを返します。

Declaration 宣言

func objects(at indexes: IndexSet) -> [Any]

Parameters パラメータ

indexes

The indexes. インデックスいくつか。

Return Value 戻り値

The returned objects are in the ascending order of their indexes in indexes, so that object in returned ordered set with higher index in indexes will follow the object with smaller index in indexes. 返されるオブジェクトは昇順での indexes の中のインデックスそれらになります、そのため返される順序集合において indexes の中のより高いインデックスを持つオブジェクトは、indexes の中のより小さいインデックスを持つオブジェクトの後に来ます。

Discussion 議論

Raises an rangeException if any location in indexes exceeds the bounds of the array, of if indexes is nil. rangeExceptionを引き起こします、もし indexes の中の何らかの位置が配列の境界を越えるならば、indexesnilならば。

See Also 参照

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