fromString16

Convert from a wchar[] into the type of the dst provided.

Returns a slice of the given dst, where it is sufficiently large to house the result, or a heap-allocated array otherwise. Returns the original input where no conversion is required.

  1. Const!(char)[] fromString16(Const!(wchar)[] s, char[] dst)
    Const!(char)[]
    fromString16
    (
    Const!(wchar)[] s
    ,
    char[] dst
    )
  2. Const!(wchar)[] fromString16(Const!(wchar)[] s, wchar[] dst)
  3. Const!(dchar)[] fromString16(Const!(wchar)[] s, dchar[] dst)

Meta