std::ranges::transform_view<V,F>::base
Min standard notice:
Returns a copy of the underlying view.
# Declarations
constexpr V base() const& requires std::copy_constructible<V>;
(since C++20)
constexpr V base() &&;
(since C++20)
# Return value
A copy of the underlying view.
# Example
This section is incompleteReason: no example