Type Aliasswift 6.0.1Swift
Elements
typealias Elements = LazyMapSequence<Base, Element>
typealias Elements = LazyMapSequence<Base, Element>
import Swift
@frozen struct LazyMapSequence<Base, Element> where Base : Sequence
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.