Searched defs:null_value_t (Results 1 – 2 of 2) sorted by relevance
18 struct null_value_t struct20 constexpr null_value_t() {} in null_value_t() argument21 constexpr null_value_t(std::nullptr_t) {} in null_value_t() argument24 constexpr bool operator==(const null_value_t&, const null_value_t&) { return true; } in operator ==()25 constexpr bool operator!=(const null_value_t&, const null_value_t&) { return false; } in operator !=()26 constexpr bool operator<(const null_value_t&, const null_value_t&) { return false; } in operator <()
10 using null_value_t = mapbox::geometry::null_value_t; typedef