| 80 | bool isNum() const { return (typ == VNUM); } |
| 81 | bool isArray() const { return (typ == VARR); } |
| 82 | bool isObject() const { return (typ == VOBJ); } |
| 83 | |
| 84 | bool push_back(const UniValue& val); |
| 85 | bool push_back(const std::string& val_) { |
no outgoing calls