/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/and.hpp (1838B)
/*============================================================================= Copyright (c) 2016 Lee Clagett 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 FUSION_AND_07152016_1625 #define FUSION_AND_07152016_1625 #include #include #include #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) #error fusion::detail::and_ requires variadic templates #endif namespace boost { namespace fusion { namespace detail { #if defined(BOOST_NO_CXX17_FOLD_EXPRESSIONS) \ || BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1913)) template struct and_impl : false_type {}; template struct and_impl...> : true_type {}; // This specialization is necessary to avoid MSVC-12 variadics bug. template struct and_impl1 : and_impl...> {}; /* fusion::detail::and_ differs from mpl::and_ in the following ways: - The empty set is valid and returns true - A single element set is valid and returns the identity - There is no upper bound on the set size - The conditions are evaluated at once, and are not short-circuited. This reduces instantations when returning true; the implementation is not recursive. */ template struct and_ : and_impl1 {}; #else template struct and_ : integral_constant {}; #endif }}} #endif // FUSION_AND_07152016_1625