MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / Create

Method Create

src/hx/Thread.cpp:19–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 Deque() : Array_obj<Dynamic>(0,0) { }
18
19 static Deque *Create()
20 {
21 Deque *result = new Deque();
22 result->mFinalizer = new hx::InternalFinalizer(result,clean);
23 return result;
24 }
25 static void clean(hx::Object *inObj)
26 {
27 Deque *d = dynamic_cast<Deque *>(inObj);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected