whitespace fixes

This commit is contained in:
Adam D. Ruppe 2023-08-27 10:38:12 -04:00
parent 4dd75f7ee6
commit 99b168bf95
1 changed files with 12 additions and 2 deletions

14
core.d
View File

@ -900,11 +900,17 @@ unittest {
+/
nothrow @safe @nogc pure
inout(char)[] stripInternal(return inout(char)[] s) {
bool isAllWhitespace = true;
foreach(i, char c; s)
if(c != ' ' && c != '\t' && c != '\n' && c != '\r') {
s = s[i .. $];
isAllWhitespace = false;
break;
}
if(isAllWhitespace)
return s[$..$];
for(int a = cast(int)(s.length - 1); a > 0; a--) {
char c = s[a];
if(c != ' ' && c != '\t' && c != '\n' && c != '\r') {
@ -916,15 +922,19 @@ inout(char)[] stripInternal(return inout(char)[] s) {
return s;
}
/// ditto
nothrow @safe @nogc pure
inout(char)[] stripRightInternal(return inout(char)[] s) {
for(int a = cast(int)(s.length - 1); a > 0; a--) {
char c = s[a];
bool isAllWhitespace = true;
foreach_reverse(a, c; s) {
if(c != ' ' && c != '\t' && c != '\n' && c != '\r') {
s = s[0 .. a + 1];
isAllWhitespace = false;
break;
}
}
if(isAllWhitespace)
s = s[0..0];
return s;