| 2061 | /// where the vector is stored. |
| 2062 | template<typename T, typename Alloc> |
| 2063 | Offset<Vector<const T *>> CreateVectorOfSortedStructs( |
| 2064 | std::vector<T, Alloc> *v) { |
| 2065 | return CreateVectorOfSortedStructs(data(*v), v->size()); |
| 2066 | } |
| 2067 | |
| 2068 | /// @brief Serialize a `std::vector` of native structs into a FlatBuffer |
| 2069 | /// `vector` in sorted order. |
nothing calls this directly
no test coverage detected