nesting.hpp 203 B

1234567
  1. const auto nesting_data = mstch::map{
  2. {"foo", mstch::array{
  3. mstch::map{{"a", mstch::map{{"b", 1}}}},
  4. mstch::map{{"a", mstch::map{{"b", 2}}}},
  5. mstch::map{{"a", mstch::map{{"b", 3}}}}
  6. }}
  7. };