https://github.com/hoytech/hoytech-cpp
Reusable C++ code
https://github.com/hoytech/hoytech-cpp
Last synced: 3 months ago
JSON representation
Reusable C++ code
- Host: GitHub
- URL: https://github.com/hoytech/hoytech-cpp
- Owner: hoytech
- License: bsd-2-clause
- Created: 2017-03-09T16:02:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-09-28T05:49:04.000Z (over 1 year ago)
- Last Synced: 2025-01-25T05:42:49.431Z (5 months ago)
- Language: C++
- Size: 30.3 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hoytech C++ Libs
These libraries must be compiled with C++11 or higher. They are licensed under the 2-clause BSD license so you can basically do whatever you want with them.
Documentation is very sparse for now. See the header files for details.
## protected_queue
Thread-safe queue implementation. Header-only library.
## timer
Spawns a thread which will run timers. Timers are cancellable. See the file `ex/timer_test.cpp` for a usage example.
## assert_zerocopy
Assertions to test whether memory is shared (or not).
## error
Simple base class for run-time exceptions, and a way to construct them.
## hex
Convert strings to/from hexadecimal encoding.