Constructs a span wrapping another span, applying a transform (by copy).

Synopsis

Declared in <absl/types/any_span.h>

template<
    typename Element,
    typename Transform,
    typename = EnableIfTransformIsValid<Transform, Element&>,
    EnableIfTransformIsByCopy<Transform> = true>
constexpr
explicit
AnySpan(
    AnySpan<Element> const& other,
    Transform const& transform);

Description

Made explicit because it has lifetime consequences.

Parameters

Name

Description

other

The source span to wrap.

transform

Functor applied to each element on access.

Created with MrDocs