MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / to_str

Function to_str

tiledb/sm/cpp_api/core_interface.h:50–54  ·  view source on GitHub ↗

Convert a tiledb_datatype_t to a string representation. **/

Source from the content-addressed store, hash-verified

48
49/** Convert a tiledb_datatype_t to a string representation. **/
50inline std::string to_str(const tiledb_datatype_t& type) {
51 const char* c_str = nullptr;
52 tiledb_datatype_to_str(type, &c_str);
53 return std::string(c_str);
54}
55
56} // namespace impl
57} // namespace tiledb

Callers 2

filter.hFile · 0.70
config.ccFile · 0.50

Calls 1

tiledb_datatype_to_strFunction · 0.85

Tested by

no test coverage detected