forked from boostorg/mp11
Add mp_map_find_test_2 (refs #52)
This commit is contained in:
@@ -186,6 +186,7 @@ run mp_similar.cpp ;
|
|||||||
|
|
||||||
# map
|
# map
|
||||||
run mp_map_find.cpp ;
|
run mp_map_find.cpp ;
|
||||||
|
run mp_map_find_2.cpp ;
|
||||||
run mp_map_contains.cpp ;
|
run mp_map_contains.cpp ;
|
||||||
run mp_map_insert.cpp ;
|
run mp_map_insert.cpp ;
|
||||||
run mp_map_replace.cpp ;
|
run mp_map_replace.cpp ;
|
||||||
|
33
test/mp_map_find_2.cpp
Normal file
33
test/mp_map_find_2.cpp
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
|
||||||
|
// Copyright 2016, 2020 Peter Dimov.
|
||||||
|
//
|
||||||
|
// 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
|
||||||
|
|
||||||
|
|
||||||
|
#include <boost/mp11/map.hpp>
|
||||||
|
#include <boost/core/lightweight_test_trait.hpp>
|
||||||
|
#include <tuple>
|
||||||
|
|
||||||
|
struct Foo {};
|
||||||
|
struct Bar {};
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
using boost::mp11::mp_map_find;
|
||||||
|
|
||||||
|
using L1 = std::tuple<std::tuple<int, int>, std::tuple<long, long>, std::tuple<bool, Foo>, std::tuple<Foo, bool>>;
|
||||||
|
|
||||||
|
BOOST_TEST_TRAIT_SAME( mp_map_find<L1, int>, std::tuple<int, int> );
|
||||||
|
BOOST_TEST_TRAIT_SAME( mp_map_find<L1, bool>, std::tuple<bool, Foo> );
|
||||||
|
BOOST_TEST_TRAIT_SAME( mp_map_find<L1, Foo>, std::tuple<Foo, bool> );
|
||||||
|
|
||||||
|
using L2 = std::tuple<std::tuple<Foo, Bar>, std::tuple<Bar, Foo>>;
|
||||||
|
|
||||||
|
BOOST_TEST_TRAIT_SAME( mp_map_find<L2, Foo>, std::tuple<Foo, Bar> );
|
||||||
|
BOOST_TEST_TRAIT_SAME( mp_map_find<L2, Bar>, std::tuple<Bar, Foo> );
|
||||||
|
|
||||||
|
return boost::report_errors();
|
||||||
|
}
|
Reference in New Issue
Block a user