mstch/test/data/null_lookup_object.hpp

14 lines
345 B
C++
Raw Normal View History

2015-04-17 03:05:59 +08:00
const auto null_lookup_object_data = mstch::map{
2015-04-23 21:55:18 +08:00
{"name", std::string{"David"}},
{"twitter", std::string{"@dasilvacontin"}},
{"fobject", mstch::array{
2015-04-17 03:05:59 +08:00
mstch::map{
2015-04-23 21:55:18 +08:00
{"name", std::string{"Flor"}},
{"twitter", std::string{"@florrts"}}
},
mstch::map{
{"name", std::string{"Miquel"}},
{"twitter", mstch::node{}}
2015-04-10 02:41:27 +08:00
}
2015-04-23 21:55:18 +08:00
}}
2015-04-17 03:05:59 +08:00
};