| 95 | } |
| 96 | |
| 97 | inline bool IsFixedTypedVector(Type t) { |
| 98 | return t >= FBT_VECTOR_INT2 && t <= FBT_VECTOR_FLOAT4; |
| 99 | } |
| 100 | |
| 101 | inline Type ToTypedVector(Type t, size_t fixed_len = 0) { |
| 102 | FLATBUFFERS_ASSERT(IsTypedVectorElementType(t)); |
no outgoing calls
no test coverage detected