| 77 | bool isFalse() const { return (typ == VBOOL) && (val != "1"); } |
| 78 | bool isBool() const { return (typ == VBOOL); } |
| 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); } |
no outgoing calls