toUpper

Converts an Utf32 String to Upper case

  1. char[] toUpper(Const!(char)[] input, char[] output)
  2. wchar[] toUpper(Const!(wchar)[] input, wchar[] output)
  3. dchar[] toUpper(Const!(dchar)[] input, dchar[] output)
    dchar[]
    toUpper
    (
    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