Supporting Types 支援を行う型

Use wrappers, indices, and iterators in operations like slicing, flattening, and reversing a collection. ラッパー、インデックス、そしてイテレータを、コレクションのスライス(切出し)、平坦化、反転のような演算で使用します。

Topics 話題

Slices スライス

Range Expressions 範囲式

Type-Erasing Wrappers 型消去ラッパー

Lazy Wrappers 遅延ラッパー

Use these lazy wrappers to defer any filtering or transformation of collection elements until elements are accessed. これらの遅延ラッパーを使うことで、コレクション要素の何らかの変換またはフィルタを要素がアクセスされるまで延期してください。

Wrappers for Algorithms アルゴリズムに対するラッパー

Many collection operations are performed by wrapping a collection in another type, instead of copying the collection's contents. 多くのコレクション演算は、コレクションを別の型の中にラップすることによって実行されます、コレクションの内容をコピーするのではなく。

Collections of Indices インデックスのコレクション

Indices and Iterators インデックスとイテレータ

Index and iterator types for other sequence and collection types in the standard library. 標準ライブラリの中の他のシーケンスとコレクション型のためのインデックスとイテレータ型

See Also 参照

Advanced Collection Topics 先進のコレクション話題