fromString8

Convert from a char[] 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. inout(T[]) fromString8(inout(char[]) s, T[] dst)
    inout(T[])
    fromString8
    (
    T
    )
    (
    inout(char[]) s
    ,
    T[] dst
    )
    if (
    is(T == char)
    )
  2. T[] fromString8(const(char[]) s, T[] dst)

Meta