| 72 | template<std::ranges::viewable_range R, |
| 73 | std::invocable<R> Adaptor> |
| 74 | constexpr auto operator|(R&& r, const Adaptor& a) |
| 75 | { |
| 76 | return a(std::forward<R>(r)); |
| 77 | } |
| 78 | |
| 79 | } // namespace details |
| 80 |
nothing calls this directly
no outgoing calls
no test coverage detected