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