/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/end_impl.hpp (1202B)
/*============================================================================= 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_END_IMPL_05042005_1142) #define FUSION_END_IMPL_05042005_1142 #include #include namespace boost { namespace fusion { struct vector_tag; namespace extension { template struct end_impl; template <> struct end_impl { template struct apply { typedef typename Sequence::size size; typedef vector_iterator type; BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(Sequence& v) { return type(v); } }; }; } }} #endif