| 236 | using std::begin; |
| 237 | using std::end; |
| 238 | template<class T> auto begin(T &&r) -> decltype(begin(std::forward<T>(r))) |
| 239 | { |
| 240 | return begin(std::forward<T>(r)); |
| 241 | } |
| 242 | template<class T> auto end(T &&r) -> decltype(end(std::forward<T>(r))) |
| 243 | { |
| 244 | return end(std::forward<T>(r)); |
no outgoing calls
no test coverage detected