/usr/include/boost/fusion/container/vector/detail
NameSizeModeActions
cpp03/-0755rm
advance_impl.hpp12880644editdlrm
as_vector.hpp22980644editdlrm
at_impl.hpp20230644editdlrm
begin_impl.hpp11460644editdlrm
config.hpp13060644editdlrm
convert_impl.hpp15330644editdlrm
deref_impl.hpp17760644editdlrm
distance_impl.hpp14110644editdlrm
end_impl.hpp12020644editdlrm
equal_to_impl.hpp11050644editdlrm
next_impl.hpp13610644editdlrm
prior_impl.hpp13650644editdlrm
value_at_impl.hpp19620644editdlrm
value_of_impl.hpp11460644editdlrm
Edit: /usr/include/boost/fusion/container/vector/detail/at_impl.hpp (2023B)
/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman 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) ==============================================================================*/ #if !defined(FUSION_AT_IMPL_05042005_0741) #define FUSION_AT_IMPL_05042005_0741 #include #include #include #include namespace boost { namespace fusion { struct vector_tag; namespace extension { template struct at_impl; template <> struct at_impl { template struct apply { typedef typename value_at_impl::template apply::type element; typedef typename detail::ref_result::type type; BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(Sequence& v) { BOOST_STATIC_ASSERT((N::value < Sequence::size::value)); return v.at_impl(N()); } }; template struct apply { typedef typename value_at_impl::template apply::type element; typedef typename detail::cref_result::type type; BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(Sequence const& v) { BOOST_STATIC_ASSERT((N::value < Sequence::size::value)); return v.at_impl(N()); } }; }; } }} #endif