Generic Structure

LazyMapSequence

A Sequence whose elements consist of those in a Base Sequence passed through a transform function returning Element. These elements are computed lazily, each time they’re read, by calling the transform function on a base element. あるSequence、その要素はBase Sequencellectionの中のものから成り、Elementを返す変換関数を通して渡されます。これらの要素は、それらが読み出されるたびに、基盤要素上で変換関数を呼び出すことによって遅延計算されます。

Declaration 宣言

@frozen struct LazyMapSequence<Base, Element> where Base : Sequence

Topics 話題

Type Aliases 型エイリアス

Instance Properties 様々なインスタンスプロパティ

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

Structures 構造体

Relationships 関係

Conforms To 次に準拠

See Also 参照

Lazy Wrappers 遅延ラッパー