BufferedOutput.append

Append content.

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

Parameters

src const(void)[]

The content to append.

Returns a chaining reference if all content was written. Throws an IOException indicating Eof or Eob if not.

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

Meta