/usr/include/boost/fusion/container/set/detail
NameSizeModeActions
cpp03/-0755rm
as_set.hpp22430644editdlrm
begin_impl.hpp12510644editdlrm
convert_impl.hpp15030644editdlrm
deref_data_impl.hpp8200644editdlrm
deref_impl.hpp14840644editdlrm
end_impl.hpp12580644editdlrm
key_of_impl.hpp8150644editdlrm
value_of_data_impl.hpp7750644editdlrm
value_of_impl.hpp10520644editdlrm
Edit: /usr/include/boost/fusion/container/set/detail/convert_impl.hpp (1503B)
/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman Copyright (c) 2005-2006 Dan Marsden 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_IMPL_09232005_1341) #define FUSION_CONVERT_IMPL_09232005_1341 #include #include #include #include #include namespace boost { namespace fusion { struct set_tag; namespace extension { template struct convert_impl; template <> struct convert_impl { template struct apply { typedef detail::as_set::value> gen; typedef typename gen:: template apply::type>::type type; BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static type call(Sequence& seq) { return gen::call(fusion::begin(seq)); } }; }; } }} #endif