29 return range | std::views::transform([](
const std::any& value) -> T {
30 return std::any_cast<T>(value);
Validates that R is a range of type T (ignoring the cvref qualifiers).
auto any_range_cast_view(const c_range_of< std::any > auto &range)
Casts a range of std::any to a range of type T.
Provides the general concept definitions.