Skip to content

Commit f5b8e67

Browse files
committed
Document alias-this work arounds
1 parent 7bd3b2e commit f5b8e67

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

std/uni.d

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8328,15 +8328,15 @@ auto asUpperCase(Range)(Range str)
83288328
assert("hEllo".asUpperCase.equal("HELLO"));
83298329
}
83308330

8331-
// explicitly undocumented
8331+
/// ditto
83328332
auto 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
83408340
auto 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
85288529
auto asCapitalized(Range)(auto ref Range str)
85298530
if (isConvertibleToString!Range)
85308531
{

0 commit comments

Comments
 (0)