toFold

Converts an Utf16 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)
    wchar[]
    toFold
    (
    const(wchar)[] input
    ,
    wchar[] output = null
    )
  3. dchar[] toFold(const(dchar)[] input, dchar[] output)

Parameters

input const(wchar)[]

String to be case mapped

output wchar[]

this output buffer will be used unless too small

Return Value

Type: wchar[]

the case mapped string

Meta