Skip to content

- For C++17 C++20 - For Multithreading, prevents data races - Very easy to use - Optimized low level - Thread Safe - High Performance

License

Notifications You must be signed in to change notification settings

cppLawyer/safeQueue-Datastructure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

Safe-Optimized-High-Performance-Queue-Datastructure-For-Multithreading-C-C++

  • For C++17 C++20

  • For Multithreading, prevents data races

  • Very easy to use

  • Optimized low level

  • Thread Safe

  • High Performance

How to Use:

safe::sQueue<YOUR_DATA_TYPE> Given_Name;

Example:

#include <iostream>
#include "safeQueue.h"

int main(){

safe::sQueue<int> example;
example.front();
example.empty();
example.push(5);
example.pop();
example.sizeQ();

return 0;
}

About

- For C++17 C++20 - For Multithreading, prevents data races - Very easy to use - Optimized low level - Thread Safe - High Performance

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages