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

objects(at:)

Returns an array containing the objects in the array at the indexes specified by a given index set. 与えられたインデックス集合によって指定されるインデックスでの、この配列のオブジェクトを含んでいる配列を返します。

Declaration 宣言

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

Return Value 戻り値

An array containing the objects in the array at the indexes specified by indexes. indexesによって指定されるインデックスでの、この配列の中のオブジェクトを含んでいる配列。

Discussion 議論

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

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

See Also 参照

Querying an Array 配列に問い合わせる