mstch/test/data/null_lookup_object.hpp

14 lines
345 B
C++
Raw Normal View History

2015-04-16 19:05:59 +00:00
const auto null_lookup_object_data = mstch::map{
2015-04-23 13:55:18 +00:00
{"name", std::string{"David"}},
{"twitter", std::string{"@dasilvacontin"}},
{"fobject", mstch::array{
2015-04-16 19:05:59 +00:00
mstch::map{
2015-04-23 13:55:18 +00:00
{"name", std::string{"Flor"}},
{"twitter", std::string{"@florrts"}}
},
mstch::map{
{"name", std::string{"Miquel"}},
{"twitter", mstch::node{}}
2015-04-09 18:41:27 +00:00
}
2015-04-23 13:55:18 +00:00
}}
2015-04-16 19:05:59 +00:00
};