Data Structure libraries

Hi All, I’m coding for ESP32 using C++ and I’m looking for containers, like List, Set and Map. I have been looking through the Mongoose OS API reference but not found anything.

Does anyone know of any libraries that implement these or other data structures?

Thanks…

ESP32 supports standard C++ library;

Okay thanks, I had tried that but the headers were not found at compile time:

#include <set.h>
#include <iterator.h>

Since you say it works I’ll dig deeper.

The C++ headers don’t have .h. Click here

#include <list>
#include <map>
#include <set>
#include <sstream>
#include <string>

Yeah, that’s what I get for posting after too many hours of staring at code, of course you’re right. Thank you.