Pipe.write

Write input to the pipe, i.e. to its first filter.

  1. void write(const(ubyte)* input, size_t length)
  2. void write(RefCounted!(Vector!(T, ALLOC), ALLOC) input)
    struct Pipe
    void
    write
    (
    T
    ALLOC
    )
    (
    auto const ref RefCounted!(Vector!(T, ALLOC), ALLOC) input
    )
  3. void write(Vector!(T, ALLOC) input)
  4. void write(string input)
  5. void write(DataSource source)
  6. void write(ubyte input)
  7. void write(ubyte[] input)

Parameters

input RefCounted!(Vector!(T, ALLOC), ALLOC)

the SecureVector containing the data to write

Meta