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

Function __hxcpp_deque_add

src/hx/Thread.cpp:133–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133void __hxcpp_deque_add(Dynamic q,Dynamic inVal)
134{
135 Deque *d = dynamic_cast<Deque *>(q.mPtr);
136 if (!d)
137 throw HX_INVALID_OBJECT;
138 d->PushBack(inVal);
139}
140
141void __hxcpp_deque_push(Dynamic q,Dynamic inVal)
142{

Callers

nothing calls this directly

Calls 1

PushBackMethod · 0.80

Tested by

no test coverage detected