| 409 | return flexbuffers::IsFixedTypedVector(type_); |
| 410 | } |
| 411 | bool IsAnyVector() const { |
| 412 | return (IsTypedVector() || IsFixedTypedVector() || IsVector()); |
| 413 | } |
| 414 | bool IsMap() const { return type_ == FBT_MAP; } |
| 415 | bool IsBlob() const { return type_ == FBT_BLOB; } |
| 416 | bool AsBool() const { |
nothing calls this directly
no test coverage detected