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 7.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func map<U>(_ transform: @escaping (Self.Element
) -> U) -> LazyMapSequence
<Self.Elements
, U>