toFold

Converts an Utf32 String to Folding case Folding case is used for case insensitive comparsions.

  1. char[] toFold(const(char)[] input, char[] output)
  2. wchar[] toFold(const(wchar)[] input, wchar[] output)
  3. dchar[] toFold(const(dchar)[] input, dchar[] output)
    dchar[]
    toFold
    (
    const(dchar)[] input
    ,
    dchar[] output = null
    )

Parameters

input const(dchar)[]

String to be case mapped

output dchar[]

this output buffer will be used unless too small

Return Value

Type: dchar[]

the case mapped string

Meta