BufferedOutput.append

Append content.

Append an array to this buffer, flush to the conduit as necessary. This is often used in lieu of a Writer.

  1. BufferedOutput append(const(void)[] src)
  2. BufferedOutput append(const(void)* src, size_t length)
    class BufferedOutput
    final
    append
    (
    const(void)* src
    ,
    size_t length
    )

Parameters

src const(void)*

The content to append.

length size_t

The number of bytes in src.

Return Value

a chaining reference if all content was written.

Throws

an IOException indicating Eof or Eob if not.

Meta