c is an uppercase
ASCII character, otherwise c itself.
auto toLower(C)(C c) if (is(C : dchar))Converts an ASCII letter to lowercase.
c | A character of any type that implicitly converts to dchar. In the case where it's a built-in type, or an enum of a built-in type, Unqual!(OriginalType!C) is returned, whereas if it's a user-defined type, dchar is returned. |
c is an uppercase
ASCII character, otherwise c itself.