#include <initializer_list>
#include <cstddef>
Go to the source code of this file.
Namespaces | |
namespace | boost |
Functions | |
template<class C> | |
constexpr auto | boost::data (C &c) noexcept(noexcept(c.data())) -> decltype(c.data()) |
template<class C> | |
constexpr auto | boost::data (const C &c) noexcept(noexcept(c.data())) -> decltype(c.data()) |
template<class T, std::size_t N> | |
constexpr T * | boost::data (T(&a)[N]) noexcept |
template<class T> | |
constexpr const T * | boost::data (std::initializer_list< T > l) noexcept |