Click here to Skip to main content
15,888,095 members
Articles / Internet of Things / Arduino

A Small Vector and Hash Table Implementation w/ No STL Dependencies

Rate me:
Please Sign up or sign in to vote.
4.50/5 (7 votes)
16 Mar 2022MIT 5.5K   28   2  
Get your data on, even on platforms without a reliable STL implementation using these simple but critical classes.
On some Arduino devices, and perhaps some embedded platforms, you may not have access to the full measure of The Standard Template Library. In those cases, it might not be feasible to rely on the STL for std::map - maybe even std::vector. Also these are very lightweight compared to The STL implementation, because aren't designed to handle every possible scenario - just the simple ones.

Views

Daily Counts

Downloads

Weekly Counts

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
United States United States
Just a shiny lil monster. Casts spells in C++. Mostly harmless.

Comments and Discussions