mstch/test/data/nested_iterating.hpp
2015-04-16 21:05:59 +02:00

8 lines
206 B
C++

const auto nested_iterating_data = mstch::map{
{"inner", mstch::array{mstch::map{
{"foo", std::string{"foo"}},
{"inner", mstch::array{mstch::map{
{"bar", std::string{"bar"}}
}}}
}}}
};