// Copyright 2019 Hans Dembinski // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_HISTOGRAM_DETAIL_NON_MEMBER_CONTAINER_ACCESS_HPP #define BOOST_HISTOGRAM_DETAIL_NON_MEMBER_CONTAINER_ACCESS_HPP #if __cpp_lib_nonmember_container_access >= 201411 #include namespace boost { namespace histogram { namespace detail { using std::data; using std::size; } // namespace detail } // namespace histogram } // namespace boost #else #include #include namespace boost { namespace histogram { namespace detail { template constexpr auto data(C& c) -> decltype(c.data()) { return c.data(); } template constexpr auto data(const C& c) -> decltype(c.data()) { return c.data(); } template constexpr T* data(T (&array)[N]) noexcept { return array; } template constexpr const E* data(std::initializer_list il) noexcept { return il.begin(); } template constexpr auto size(const C& c) -> decltype(c.size()) { return c.size(); } template constexpr std::size_t size(const T (&)[N]) noexcept { return N; } } // namespace detail } // namespace histogram } // namespace boost #endif #endif // BOOST_HISTOGRAM_DETAIL_NON_MEMBER_CONTAINER_ACCESS_HPP