package fuseau

  1. Overview
  2. Docs

An output stream, ie. a place into which we can write bytes.

This can be a Buffer.t, an out_channel, a Unix.file_descr, etc.

method output_char : char -> unit

Output a single char

method output : bytes -> int -> int -> unit

Output slice

method flush : unit -> unit

Flush underlying buffer

method close : unit -> unit

Close the output. Must be idempotent.