toLower

Creates a new array which is identical to s except that all of its characters are converted to lowercase (by performing Unicode lowercase mapping). If none of s characters were affected, then s itself is returned if s is a string-like type.

  1. dchar toLower(dchar c)
  2. ElementEncodingType!S[] toLower(S s)
    version(!std_uni_bootstrap)
    @trusted
    toLower
    (
    S
    )
    (
    return scope S s
    )
  3. ElementEncodingType!S[] toLower(S s)

Parameters

s S

A random access range of characters

Return Value

Type: ElementEncodingType!S[]

An array with the same element type as s.

Meta