/usr/include/boost/fusion/support/detail
NameSizeModeActions
access.hpp14530644editdlrm
and.hpp18380644editdlrm
as_fusion_element.hpp14780644editdlrm
enabler.hpp6400644editdlrm
index_sequence.hpp23910644editdlrm
is_mpl_sequence.hpp9570644editdlrm
is_native_fusion_sequence.hpp9470644editdlrm
is_same_size.hpp10840644editdlrm
mpl_iterator_category.hpp17540644editdlrm
pp_round.hpp30490644editdlrm
segmented_fold_until_impl.hpp137100644editdlrm
Edit: /usr/include/boost/fusion/support/detail/is_native_fusion_sequence.hpp (947B)
/*============================================================================= Copyright (c) 2018 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 BOOST_FUSION_IS_NATIVE_FUSION_SEQUENCE #define BOOST_FUSION_IS_NATIVE_FUSION_SEQUENCE #include #include #include #include #include namespace boost { namespace fusion { namespace detail { template struct is_native_fusion_sequence : mpl::and_< is_complete , is_convertible > {}; }}} #endif