toMultiBulk

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

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

Examples

toMultiBulk(["SET", "name", "adil"]) == toMultiBulk("SET name adil")

Meta