toMultiBulk

Take an array of varargs and concat them to a single Multibulk

  1. auto toMultiBulk(const C[] command, T[][] args)
  2. auto toMultiBulk(const C[] command, T args)
    @trusted
    toMultiBulk
    (
    C
    T...
    )
    (
    const C[] command
    ,
    )
    if (
    isSomeChar!C
    )
  3. auto toMultiBulk(const C[][] commands)
  4. auto toMultiBulk(const C[] command)

Examples

toMultiBulk("SADD", "random", 1, 1.5, 'c') == toMultiBulk("SADD random 1 1.5 c")

Meta