-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a string splitter class #27154
Add a string splitter class #27154
Conversation
PR #27154: Size comparison from d4c7d47 to f055777 Decreases (5 builds for bl602, bl702, cc32xx)
Full report (8 builds for bl602, bl702, cc32xx, mbed, qpg)
|
PR #27154: Size comparison from d4c7d47 to c41a3f1 Increases (1 build for nrfconnect)
Decreases (8 builds for bl602, bl702, mbed, nrfconnect, qpg)
Full report (11 builds for bl602, bl702, cc32xx, mbed, nrfconnect, qpg)
|
PR #27154: Size comparison from d4c7d47 to 7be1d55 Increases (1 build for nrfconnect)
Decreases (4 builds for bl702, cc32xx, mbed)
Full report (13 builds for bl602, bl702, cc32xx, linux, mbed, nrfconnect, qpg)
|
PR #27154: Size comparison from 9f93a41 to 3ced41d Increases (1 build for cc32xx)
Full report (2 builds for cc32xx, mbed)
|
PR #27154: Size comparison from 9f93a41 to a9aa2d5 Decreases (1 build for mbed)
Full report (4 builds for cc32xx, mbed, qpg)
|
PR #27154: Size comparison from 9f93a41 to 1523a44 Increases (6 builds for bl602, cc32xx, psoc6, telink)
Decreases (17 builds for bl702, esp32, k32w, psoc6, telink)
Full report (57 builds for bl602, bl702, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
} | ||
} | ||
|
||
/// Returns the next character san |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"span", not "san"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops ... patched into #27156 because small delta.
Create a class that can iterate over a character-separated string.
In other PRs, e.g. for argument parsing, I would like to have comma separated value iteration.
Splitting this into its own helper class, with unit tests.