| 110 | } |
| 111 | |
| 112 | inline Type ToTypedVectorElementType(Type t) { |
| 113 | FLATBUFFERS_ASSERT(IsTypedVector(t)); |
| 114 | return static_cast<Type>(t - FBT_VECTOR_INT + FBT_INT); |
| 115 | } |
| 116 | |
| 117 | inline Type ToFixedTypedVectorElementType(Type t, uint8_t *len) { |
| 118 | FLATBUFFERS_ASSERT(IsFixedTypedVector(t)); |
no test coverage detected