Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/catboost/catboost
/ Dequeue
Method
Dequeue
library/cpp/threading/chunk_queue/queue.h:547–554 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
545
}
546
547
bool Dequeue(TItem& value) {
548
T* ptr = nullptr;
549
if (Impl.Dequeue(ptr)) {
550
value.Reset(ptr);
551
return true;
552
}
553
return false;
554
}
555
556
bool IsEmpty() {
557
return Impl.IsEmpty();
Callers
nothing calls this directly
Calls
2
Dequeue
Method · 0.45
Reset
Method · 0.45
Tested by
no test coverage detected