| 405 | bool IsVector() const { return type_ == FBT_VECTOR || type_ == FBT_MAP; } |
| 406 | bool IsUntypedVector() const { return type_ == FBT_VECTOR; } |
| 407 | bool IsTypedVector() const { return flexbuffers::IsTypedVector(type_); } |
| 408 | bool IsFixedTypedVector() const { |
| 409 | return flexbuffers::IsFixedTypedVector(type_); |
| 410 | } |
nothing calls this directly
no test coverage detected