void popFront() {
import std.string : indexOf;
if (source is null) {
isEmpty = true;
return;
}
void tidyInput() {
foreach(i, c; source) {
switch(c) {
case 0: .. case ' ':
break;
default:
source =
source[i .. $];
return;
}
}
source = null;
}
tidyInput();
Do you mind to explain what is really going on at popFront() and tidyInput() functions?
