/usr/include/boost/phoenix/stl/algorithm/detail
NameSizeModeActions
begin.hpp7550644editdlrm
decay_array.hpp7580644editdlrm
end.hpp7450644editdlrm
has_equal_range.hpp13420644editdlrm
has_find.hpp16370644editdlrm
has_lower_bound.hpp13420644editdlrm
has_remove.hpp7820644editdlrm
has_remove_if.hpp8370644editdlrm
has_reverse.hpp8290644editdlrm
has_sort.hpp7740644editdlrm
has_unique.hpp8250644editdlrm
has_upper_bound.hpp12990644editdlrm
is_std_hash_map.hpp14540644editdlrm
is_std_hash_set.hpp14300644editdlrm
is_std_list.hpp8950644editdlrm
is_std_map.hpp12090644editdlrm
is_std_set.hpp12130644editdlrm
is_unordered_set_or_map.hpp24190644editdlrm
Edit: /usr/include/boost/phoenix/stl/algorithm/detail/is_unordered_set_or_map.hpp (2419B)
/////////////////////////////////////////////////////////////////////////////// // Copyright 2005 Daniel Wallin. // Copyright 2005 Joel de Guzman. // Copyright 2015 John Fletcher // // Use, modification and distribution is subject to 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) // // This is based on is_std_hash_map.hpp which was // modeled after range_ex, Copyright 2004 Eric Niebler /////////////////////////////////////////////////////////////////////////////// // // is_unordered_set_or_map.hpp // ///////////////////////////////////////////////////////////////////////////// // Definitions of overloads for the use of find with unordered types. #ifndef BOOST_PHOENIX_IS_STD_UNORDERED_SET_OR_MAP #define BOOST_PHOENIX_IS_STD_UNORDERED_SET_OR_MAP #include #include #ifdef BOOST_PHOENIX_HAS_UNORDERED_SET_AND_MAP #include BOOST_PHOENIX_UNORDERED_SET_HEADER #include BOOST_PHOENIX_UNORDERED_MAP_HEADER #endif namespace boost { template struct is_std_unordered_set : boost::mpl::false_ {}; template struct is_std_unordered_multiset : boost::mpl::false_ {}; template struct is_std_unordered_map : boost::mpl::false_ {}; template struct is_std_unordered_multimap : boost::mpl::false_ {}; #ifdef BOOST_PHOENIX_HAS_UNORDERED_SET_AND_MAP template< class Kty , class Hash , class Cmp , class Alloc > struct is_std_unordered_set< std::unordered_set > : boost::mpl::true_ {}; template< class Kty , class Hash , class Cmp , class Alloc > struct is_std_unordered_multiset< std::unordered_multiset > : boost::mpl::true_ {}; template< class Kty , class Ty , class Hash , class Cmp , class Alloc > struct is_std_unordered_map< std::unordered_map > : boost::mpl::true_ {}; template< class Kty , class Ty , class Hash , class Cmp , class Alloc > struct is_std_unordered_multimap< std::unordered_multimap > : boost::mpl::true_ {}; #endif } // namespace boost #endif