nested_iterating.hpp 206 B

12345678
  1. const auto nested_iterating_data = mstch::map{
  2. {"inner", mstch::array{mstch::map{
  3. {"foo", std::string{"foo"}},
  4. {"inner", mstch::array{mstch::map{
  5. {"bar", std::string{"bar"}}
  6. }}}
  7. }}}
  8. };