/usr/include/boost/fusion/sequence/intrinsic
NameSizeModeActions
detail/-0755rm
at.hpp37920644editdlrm
at_c.hpp5370644editdlrm
at_key.hpp36080644editdlrm
back.hpp14370644editdlrm
begin.hpp28870644editdlrm
empty.hpp18290644editdlrm
end.hpp28260644editdlrm
front.hpp13460644editdlrm
has_key.hpp24420644editdlrm
segments.hpp23920644editdlrm
size.hpp25680644editdlrm
swap.hpp19310644editdlrm
value_at.hpp26330644editdlrm
value_at_key.hpp26900644editdlrm
Edit: /usr/include/boost/fusion/sequence/intrinsic/front.hpp (1346B)
/*============================================================================= 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_FRONT_09162005_0343) #define FUSION_FRONT_09162005_0343 #include #include #include #include #include namespace boost { namespace fusion { struct fusion_sequence_tag; namespace result_of { template struct front : result_of::deref::type> {}; } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::front::type front(Sequence& seq) { return *fusion::begin(seq); } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::front::type front(Sequence const& seq) { return *fusion::begin(seq); } }} #endif