Releases: mike-matera/ArduinoSTL
Bug fix release.
Back from the dead. Merge updates from uClibc++, ciband and the now official Arduino library.
With this release I'm trying to make this project sync with the new official Arduino STL library. Depending on what they want to do this repository may be deprecated in the future. This will work again in the library manager.
Enable switching serial ports.
This release enables users to switch the serial ports that cin, cout and printf() use. Additionally users may disable the instantiation of cin and and cout to save memory. The default is still to use Serial
on the platform and the change is backwards compatible with existing sketches.
Bugfixes in complex and algorithm
This is a bugfix release. Thanks to folks for reporting bugs!
Revision bump to implement vector and map initializers.
This release updates the version in library.properties.
Adding support for std::vector and std::map initializers.
Thanks to a generous pull request.
First production release.
This release is the first production release. The library was successfully used in a semester of CS-11M. Thanks to @amotl for bugfixes.
Bugfix release for Issue #3
This release fixes problems on SAMD platform, which doesn't automatically include the types in stdint.h
Enable Vector Initialization
Added code to make the following work:
vector<int> myVect {1, 2, 3, 4, 5};
Fix large floats with cin.
A fix for input of large floats. Like output it still needs work.