blob: 88c1c8e2929d5344686f8be580fab092d61c7c7c (
plain)
1
2
3
4
5
6
|
const auto reuse_of_enumerables_data = mstch::map{
{"terms", mstch::array{
mstch::map{{"name", std::string{"t1"}}, {"index", 0}},
mstch::map{{"name", std::string{"t2"}}, {"index", 1}}
}}
};
|