mstch/test/data/falsy.hpp

6 lines
149 B
C++
Raw Normal View History

2015-04-17 03:05:59 +08:00
const auto falsy_data = mstch::map{
2015-04-10 02:41:27 +08:00
{"emptyString", std::string{""}},
{"emptyArray", mstch::array{}},
{"zero", 0},
{"null", mstch::node{}}
2015-04-17 03:05:59 +08:00
};