fromString32

Convert from a dchar[] 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)[] fromString32(const(dchar)[] s, char[] dst)
    const(char)[]
    fromString32
    (
    const(dchar)[] s
    ,
    char[] dst
    )
  2. const(wchar)[] fromString32(const(dchar)[] s, wchar[] dst)
  3. const(dchar)[] fromString32(const(dchar)[] s, dchar[] dst)

Meta