Generic Instance Method
総称体インスタンスメソッド
map(_:)
Returns a
LazyMapSequence
over this Sequence
. The elements of the result are computed lazily, each time they are read, by calling transform
function on a base element.
このSequence
を覆うLazyMapSequence
を返します。結果のそれぞれの要素は遅延に計算されます、毎回それらは、基盤となる要素上でtransform
関数を呼び出すことによって読み出されます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func map<U>(_ transform: @escaping (Base.Element
) -> U) -> LazyMapSequence
<Slice
<Base>, U>
Available when
Base
conforms to LazySequenceProtocol
.
Base
がLazySequenceProtocol
に準拠する場合に利用可能です。