toLower

If c is a Unicode uppercase $(CHARACTER), then its lowercase equivalent is returned. Otherwise c is returned.

Warning: certain alphabets like German and Greek have no 1:1 upper-lower mapping. Use overload of toLower which takes full string instead.

  1. dchar toLower(dchar c)
    version(!std_uni_bootstrap)
    @safe pure nothrow @nogc
    dchar
    toLower
    (
    dchar c
    )
  2. ElementEncodingType!S[] toLower(S s)
  3. ElementEncodingType!S[] toLower(S s)

Meta