| 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); } |
| 171 | bool AsBool() const { return _b; } |
| 172 | double AsNumber() const { return _num; } |
| 173 | const AMFObject& AsObject() const { return *_obj; } |
no outgoing calls
no test coverage detected