Set any vector element as a 64bit int, regardless of type what it is.
| 355 | |
| 356 | // Set any vector element as a 64bit int, regardless of type what it is. |
| 357 | inline void SetAnyVectorElemI(VectorOfAny *vec, reflection::BaseType elem_type, |
| 358 | size_t i, int64_t val) { |
| 359 | SetAnyValueI(elem_type, vec->Data() + GetTypeSize(elem_type) * i, val); |
| 360 | } |
| 361 | |
| 362 | // Set any vector element as a double, regardless of type what it is. |
| 363 | inline void SetAnyVectorElemF(VectorOfAny *vec, reflection::BaseType elem_type, |
nothing calls this directly
no test coverage detected