/*! @file Defines `boost::hana::at` and `boost::hana::at_c`. @copyright Louis Dionne 2013-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_HANA_AT_HPP #define BOOST_HANA_AT_HPP #include #include #include #include #include #include #include BOOST_HANA_NAMESPACE_BEGIN //! @cond template constexpr decltype(auto) at_t::operator()(Xs&& xs, N const& n) const { using It = typename hana::tag_of::type; using At = BOOST_HANA_DISPATCH_IF(at_impl, hana::Iterable::value ); #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS static_assert(hana::Iterable::value, "hana::at(xs, n) requires 'xs' to be an Iterable"); static_assert(hana::IntegralConstant::value, "hana::at(xs, n) requires 'n' to be an IntegralConstant"); #endif return At::apply(static_cast(xs), n); } //! @endcond template struct at_impl> : default_ { template static constexpr auto apply(Args&& ...) = delete; }; template constexpr decltype(auto) at_c(Xs&& xs) { return hana::at(static_cast(xs), hana::size_t{}); } BOOST_HANA_NAMESPACE_END #endif // !BOOST_HANA_AT_HPP