mstch/test/data/nesting.hpp

7 lines
203 B
C++
Raw Normal View History

2015-04-17 03:05:59 +08:00
const auto nesting_data = mstch::map{
{"foo", mstch::array{
mstch::map{{"a", mstch::map{{"b", 1}}}},
mstch::map{{"a", mstch::map{{"b", 2}}}},
mstch::map{{"a", mstch::map{{"b", 3}}}}
}}
};