Contents

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.

Declaration

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

Topics

Instance Methods

Type Aliases

Default Implementations

See Also

Lazy Wrappers