mstch/test/data/falsy.hpp

6 lines
149 B
C++
Raw Normal View History

2015-04-16 19:05:59 +00:00
const auto falsy_data = mstch::map{
2015-04-09 18:41:27 +00:00
{"emptyString", std::string{""}},
{"emptyArray", mstch::array{}},
{"zero", 0},
{"null", mstch::node{}}
2015-04-16 19:05:59 +00:00
};