| 1878 | /// where the vector is stored. |
| 1879 | template<typename Alloc> |
| 1880 | Offset<Vector<Offset<String>>> CreateVectorOfStrings( |
| 1881 | const std::vector<std::string, Alloc> &v) { |
| 1882 | return CreateVectorOfStrings(v.cbegin(), v.cend()); |
| 1883 | } |
| 1884 | |
| 1885 | /// @brief Serialize a collection of Strings into a FlatBuffer `vector`. |
| 1886 | /// This is a convenience function for a common case. |
nothing calls this directly
no test coverage detected