| 79 | bool isStr() const { return (typ == VSTR); } |
| 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); |
no outgoing calls