Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated String library to use C++11 iterators. (esp8266#2267)
This will allow using the String library in a ranged for loop: ```C++ String s("Hi, this is a test"); for (const char& ch : s) { Serial.print(ch); } ``` and even modify ```C++ String s("Hi, this is another test"); for (char& ch : s) { ch++; } Serial.println(s); ```
- Loading branch information