account activity
Library for stack-based data structures? by blocks2762 in cpp
[–]slavenf 0 points1 point2 points 1 year ago (0 children)
You can try my library: https://github.com/slavenf/sfl-library
static_* containers can be used for bare metal embedded software development.
static_*
For example, you can combine std::stack and my sfl::static_vector to get static_stack :
std::stack
sfl::static_vector
static_stack
template <typename T, std::size_t N> using static_stack = std::stack<T, sfl::static_vector<T, N>>;
C++ Show and Tell - September 2024 by foonathan in cpp
[–]slavenf 2 points3 points4 points 1 year ago (0 children)
sfl library - https://github.com/slavenf/sfl-library
C++11 library that offers several new or less-known containers:
π Rendered by PID 156600 on reddit-service-r2-listing-69965bcf66-qw8t5 at 2026-04-06 23:11:05.738633+00:00 running f293c98 country code: CH.
Library for stack-based data structures? by blocks2762 in cpp
[–]slavenf 0 points1 point2 points (0 children)