[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/basicpp/co-cpp19/develop/src/array19.lib/array19/adlRange.h [Back]  [Original]

#pragma once
#include  // std::begin, std::end

namespace array19 {

template constexpr auto adlBegin(T& v) {
    using std::begin;
    return begin(v);
}
template constexpr auto adlEnd(T& v) {
    using std::end;
    return end(v);
}

} // namespace array19

Web Proxy Viewer  |  New URL  |  Original Page