MCPcopy Create free account
hub / github.com/cwida/ALP / Create

Method Create

publication/source_code/include/duckdb/helper.hpp:57–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55struct UniqueConstructor {
56 template <class T, typename... ARGS>
57 static unique_ptr<T> Create(ARGS&&... args) {
58 return make_unique<T>(std::forward<ARGS>(args)...);
59 }
60};
61
62#ifdef DUCKDB_DEBUG_MOVE

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected