arduino / arduino/ArduinoCore-API
String class plus plus
Open
- Dominant language
- C++
- Stars
- 306
- Forks
- 150
- PR merge metrics
- No merged PRs in 30d
Description
String str0, str1, str2, str3;
str0 = str1 + str2 + str3; //// will cause problem
str0 += str1 + str2; //// will cause problem
str0 = str1; str0 += str2; str0 += str3; // good.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.