| 165 | bool IsObject() const |
| 166 | { return _type == AMF_MARKER_OBJECT || _type == AMF_MARKER_ECMA_ARRAY; } |
| 167 | bool IsArray() const { return _type == AMF_MARKER_STRICT_ARRAY; } |
| 168 | |
| 169 | butil::StringPiece AsString() const |
| 170 | { return butil::StringPiece((_is_shortstr ? _shortstr : _str), _strsize); } |
no outgoing calls