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

Method Create

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

Source from the content-addressed store, hash-verified

48struct SharedConstructor {
49 template <class T, typename... ARGS>
50 static shared_ptr<T> Create(ARGS&&... args) {
51 return make_shared<T>(std::forward<ARGS>(args)...);
52 }
53};
54
55struct UniqueConstructor {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected