MCPcopy Create free account
hub / github.com/Dobiasd/FunctionalPlus / queue

Method queue

include/fplus/queue.hpp:23–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21class queue {
22public:
23 queue()
24 : queue_()
25 , mutex_()
26 , cond_()
27 {
28 }
29 fplus::maybe<T> pop()
30 {
31 std::unique_lock<std::mutex> lock(mutex_);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected