subscript(Range<Index>) -> Slice<Dictionary<Key, Value>>
Accesses a contiguous subrange of the collection’s elements.
コレクションのもついくらかの要素からなるある連続した下位範囲にアクセスします。
subscript<R>(R) -> Slice<Dictionary<Key, Value>>
Accesses the contiguous subrange of the collection’s elements specified by a range expression.
範囲式によって指定される、コレクションの要素からなる連続した下位範囲にアクセスします。
func prefix(Int) -> Slice<Dictionary<Key, Value>>
Returns a subsequence, up to the specified maximum length, containing the initial elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの冒頭の要素を含めて返します。
func prefix(through: Index) -> Slice<Dictionary<Key, Value>>
Returns a subsequence from the start of the collection through the specified position.
コレクションの始まりから指定された位置までも含む下位シーケンスを返します。
func prefix(upTo : Index) -> Slice<Dictionary<Key, Value>>
Returns a subsequence from the start of the collection up to, but not including, the specified position.
コレクションの始まりから指定された位置まで、しかしそれは含めない下位シーケンスを返します。
func prefix(while: ((key: Key, value: Value)) -> Bool) -> Slice<Dictionary<Key, Value>>
Returns a subsequence containing the initial elements until
predicate
returns false
and skipping the remaining elements.
predicate
がfalse
を返すまで冒頭の要素を含んでいて残りの要素を飛ばしている、ある下位シーケンスを返します。
func suffix(from: Index) -> Slice<Dictionary<Key, Value>>
Returns a subsequence from the specified position to the end of the collection.
指定された位置からコレクションの終わりまでの下位シーケンスを返します。