/usr/include/boost/fusion/container/generation
NameSizeModeActions
detail/-0755rm
cons_tie.hpp12400644editdlrm
deque_tie.hpp13160644editdlrm
ignore.hpp11290644editdlrm
list_tie.hpp12140644editdlrm
make_cons.hpp14690644editdlrm
make_deque.hpp14310644editdlrm
make_list.hpp13890644editdlrm
make_map.hpp18750644editdlrm
make_set.hpp16860644editdlrm
make_vector.hpp17190644editdlrm
map_tie.hpp14650644editdlrm
pair_tie.hpp14030644editdlrm
vector_tie.hpp12440644editdlrm
Edit: /usr/include/boost/fusion/container/generation/make_cons.hpp (1469B)
/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman Copyright (c) 2005 Eric Niebler 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_MAKE_CONS_07172005_0918) #define FUSION_MAKE_CONS_07172005_0918 #include #include #include namespace boost { namespace fusion { struct nil_; namespace result_of { template struct make_cons { typedef cons::type, Cdr> type; }; } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline cons::type> make_cons(Car const& car) { return cons::type>(car); } template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED inline cons::type, Cdr> make_cons(Car const& car, Cdr const& cdr) { return cons::type, Cdr>(car, cdr); } }} #endif