/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/as_set.hpp (2243B)
/*============================================================================= Copyright (c) 2014-2015 Kohei Takahashi 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) ==============================================================================*/ #ifndef FUSION_AS_SET_11062014_2121 #define FUSION_AS_SET_11062014_2121 #include #include /////////////////////////////////////////////////////////////////////////////// // Without variadics, we will use the PP version /////////////////////////////////////////////////////////////////////////////// #if !defined(BOOST_FUSION_HAS_VARIADIC_SET) # include #else /////////////////////////////////////////////////////////////////////////////// // C++11 interface /////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include namespace boost { namespace fusion { namespace detail { BOOST_FUSION_BARRIER_BEGIN template ::type> struct as_set; template struct as_set > { template struct apply { typedef set< typename result_of::value_of< typename result_of::advance_c::type >::type... > type; }; template BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED static typename apply::type call(Iterator const& i) { typedef apply gen; typedef typename gen::type result; return result(*advance_c(i)...); } }; BOOST_FUSION_BARRIER_END }}} #endif #endif