| 65 | inline alloc_slice toJSON(bool json5 =false, bool canonical =false) const; |
| 66 | inline std::string toJSONString() const {return std::string(toJSON());} |
| 67 | inline alloc_slice toJSON5() const {return toJSON(true);} |
| 68 | |
| 69 | explicit operator bool() const {return _val != nullptr;} |
| 70 | bool operator! () const {return _val == nullptr;} |
nothing calls this directly
no outgoing calls
no test coverage detected