/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_same_size.hpp (1084B)
/*============================================================================= 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_IS_SAME_SIZE_10082015_1156 #define FUSION_IS_SAME_SIZE_10082015_1156 #include #include #include namespace boost { namespace fusion { namespace detail { template ::value && traits::is_sequence::value> struct is_same_size : mpl::false_ {}; template struct is_same_size : mpl::bool_::value == result_of::size::value> {}; }}} #endif