Registry / utility / plf-queue

plf-queue

JSON →
library2.2vcpkgunverified

A data container replicating std::queue functionality but with better performance than standard library containers in a queue context. C++98/03/11/14/etc-compatible.

vcpkg install plf-queue
INSTALL
IMPORT
SIG · PLF-QUEUE
P
plf-queue
utilitycppv2.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

plf_queue.h
#include <plf_queue.h>

Basic usage of plf::queue

#include "plf_queue.h" #include <iostream> int main() { plf::queue<int> q; q.push(1); q.push(2); std::cout << "Front: " << q.front() << std::endl; q.pop(); std::cout << "Size: " << q.size() << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.2latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources

No resource links recorded.

plf-queue — pip install plf-queue · libregistry