|
template<class C> |
constexpr auto | data (C &c) noexcept(noexcept(c.data())) -> decltype(c.data()) |
|
template<class C> |
constexpr auto | data (const C &c) noexcept(noexcept(c.data())) -> decltype(c.data()) |
|
template<class T, std::size_t N> |
constexpr T * | data (T(&a)[N]) noexcept |
|
template<class T> |
constexpr const T * | data (std::initializer_list< T > l) noexcept |
|
template<class I> |
constexpr span< I > | make_span (I *f, std::size_t c) noexcept |
|
template<class I> |
constexpr span< I > | make_span (I *f, I *l) noexcept |
|
template<class T, std::size_t N> |
constexpr span< T, N > | make_span (T(&a)[N]) noexcept |
|
template<class T, std::size_t N> |
constexpr span< T, N > | make_span (std::array< T, N > &a) noexcept |
|
template<class T, std::size_t N> |
constexpr span< const T, N > | make_span (const std::array< T, N > &a) noexcept |
|
template<class R> |
span< typename detail::span_data< R >::type > | make_span (R &&r) |
|