File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8328,15 +8328,15 @@ auto asUpperCase(Range)(Range str)
83288328 assert (" hEllo" .asUpperCase.equal(" HELLO" ));
83298329}
83308330
8331- // explicitly undocumented
8331+ // / ditto
83328332auto asLowerCase (Range )(auto ref Range str)
83338333 if (isConvertibleToString! Range )
83348334{
83358335 import std.traits : StringTypeOf;
83368336 return asLowerCase! (StringTypeOf! Range )(str);
83378337}
83388338
8339- // explicitly undocumented
8339+ // / ditto
83408340auto asUpperCase (Range )(auto ref Range str)
83418341 if (isConvertibleToString! Range )
83428342{
@@ -8525,6 +8525,7 @@ auto asCapitalized(Range)(Range str)
85258525 assert (" hEllo" .asCapitalized.equal(" Hello" ));
85268526}
85278527
8528+ // / ditto
85288529auto asCapitalized (Range )(auto ref Range str)
85298530 if (isConvertibleToString! Range )
85308531{
You can’t perform that action at this time.
0 commit comments