mirror of https://github.com/edouarda/brigand.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
700 B
C++
16 lines
700 B
C++
#include "map_test.hpp"
|
|
|
|
#include <brigand/sequences/keys_as_sequence.hpp>
|
|
|
|
brigand::keys_as_sequence<map_of_ten> keys_of_ten =
|
|
brigand::set<type_one, type_two, type_three, type_four, type_five, type_six, type_seven,
|
|
type_eight, type_nine, void>{};
|
|
|
|
brigand::keys_as_sequence<map_of_ten, brigand::set> keys_of_ten_set =
|
|
brigand::set<type_one, type_two, type_three, type_four, type_five, type_six, type_seven,
|
|
type_eight, type_nine, void>{};
|
|
|
|
brigand::keys_as_sequence<map_of_ten, brigand::list> keys_of_ten_list =
|
|
brigand::list<type_one, type_two, type_three, type_four, type_five, type_six, type_seven,
|
|
type_eight, type_nine, void>{};
|