| 78 | |
| 79 | template<std::ranges::viewable_range R, typename T> |
| 80 | constexpr auto |
| 81 | operator|(R&& r, |
| 82 | const custom_take_range_adaptor_closure<T>& a) |
| 83 | { |
| 84 | return a(std::forward<R>(r)); |
| 85 | } |
| 86 | |
| 87 | } // namespace details |
| 88 |
nothing calls this directly
no outgoing calls
no test coverage detected