/usr/include/boost/fusion/container/list
NameSizeModeActions
detail/-0755rm
cons.hpp53220644editdlrm
cons_fwd.hpp6710644editdlrm
cons_iterator.hpp35970644editdlrm
convert.hpp19540644editdlrm
list.hpp37910644editdlrm
list_fwd.hpp14720644editdlrm
nil.hpp16340644editdlrm
Edit: /usr/include/boost/fusion/container/list/convert.hpp (1954B)
/*============================================================================= 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_CONVERT_09232005_1215) #define FUSION_CONVERT_09232005_1215 #include #include #include #include #include #include #include namespace boost { namespace fusion { namespace result_of { template struct as_list { typedef typename detail::build_cons< typename result_of::begin::type , typename result_of::end::type > build_cons; typedef typename build_cons::type type; BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(Sequence& seq) { return build_cons::call(fusion::begin(seq), fusion::end(seq)); } }; } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::as_list::type as_list(Sequence& seq) { return result_of::as_list::call(seq); } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline typename result_of::as_list::type as_list(Sequence const& seq) { return result_of::as_list::call(seq); } }} #endif