toFold

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

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

Parameters

input Const!(char)[]

String to be case mapped

output char[]

this output buffer will be used unless too small

Return Value

Type: char[]

the case mapped string

Meta