/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/distance_impl.hpp (1411B)
/*============================================================================= 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_DISTANCE_IMPL_09172005_0751) #define FUSION_DISTANCE_IMPL_09172005_0751 #include #include namespace boost { namespace fusion { struct vector_iterator_tag; namespace extension { template struct distance_impl; template <> struct distance_impl { template struct apply : mpl::minus { BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static typename mpl::minus< typename Last::index, typename First::index>::type call(First const&, Last const&) { typedef typename mpl::minus< typename Last::index, typename First::index>::type result; return result(); } }; }; } }} #endif