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

Function __hxcpp_deque_push

src/hx/Thread.cpp:141–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141void __hxcpp_deque_push(Dynamic q,Dynamic inVal)
142{
143 Deque *d = dynamic_cast<Deque *>(q.mPtr);
144 if (!d)
145 throw HX_INVALID_OBJECT;
146 d->PushFront(inVal);
147}
148
149Dynamic __hxcpp_deque_pop(Dynamic q,bool block)
150{

Callers

nothing calls this directly

Calls 1

PushFrontMethod · 0.80

Tested by

no test coverage detected