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