| 51 | |
| 52 | template <typename Iter> |
| 53 | inline IterationRange<Iter> MakeEmptyIterationRange(const Iter& it) { |
| 54 | return IterationRange<Iter>(it, it); |
| 55 | } |
| 56 | |
| 57 | template <typename Container> |
| 58 | inline auto ReverseRange(Container&& c) { |
nothing calls this directly
no outgoing calls
no test coverage detected