sig
  type ('input, 'output) t = ('input, 'output) Biocaml_transform.t
  exception Feeding_stopped_transform of string
  val make :
    ?name:string ->
    feed:('input -> unit) ->
    next:(bool -> [ `end_of_stream | `not_ready | `output of 'output ]) ->
    unit -> ('input, 'output) t
  val feed : ('input, 'output) t -> 'input -> unit
  val next :
    ('input, 'output) t ->
    [ `end_of_stream | `not_ready | `output of 'output ]
  val stop : ('input, 'output) t -> unit
  val name : ('input, 'output) t -> string option
  val identity : ?name:string -> unit -> ('a, 'a) t
  val of_function : ?name:string -> ('-> 'b) -> ('a, 'b) t
  val to_stream_fun :
    ('input, 'output) t -> 'input Stream.t -> 'output Stream.t
  val in_channel_strings_to_stream :
    ?buffer_size:int -> in_channel -> (string, 'output) t -> 'output Stream.t
  val stream_to_out_channel :
    'input Stream.t -> ('input, string) t -> out_channel -> unit
  val on_input : ('b, 'c) t -> f:('-> 'b) -> ('a, 'c) t
  val on_output : ('a, 'b) t -> f:('-> 'c) -> ('a, 'c) t
  val compose : ('a, 'b) t -> ('b, 'c) t -> ('a, 'c) t
  val mix :
    ('a1, 'b1) t ->
    ('a2, 'b2) t ->
    ('a1 * 'a2, [ `both of 'b1 * 'b2 | `left of 'b1 | `right of 'b2 ]) t
  val filter_compose :
    ('il, 'ol) t ->
    ('ir, 'our) t ->
    destruct:('ol -> [ `bypass of 'filtered | `transform of 'ir ]) ->
    reconstruct:([ `bypassed of 'filtered | `transformed of 'our ] -> 'result) ->
    ('il, 'result) t
  val split_and_merge :
    ('il, 'ol) t ->
    ('ir, 'our) t ->
    split:('input -> [ `left of 'il | `right of 'ir ]) ->
    merge:([ `left of 'ol | `right of 'our ] -> 'output) ->
    ('input, 'output) t
  val make_result :
    ?name:string ->
    feed:('input -> unit) ->
    next:(bool ->
          [ `end_of_stream
          | `not_ready
          | `output of ('a, 'b) Core.Std.Result.t ]) ->
    unit -> ('input, ('a, 'b) Core.Std.Result.t) t
  val on_ok :
    ('input, ('ok, 'error) Core.Std.Result.t) t ->
    f:('ok -> 'still_ok) -> ('input, ('still_ok, 'error) Core.Std.Result.t) t
  val on_error :
    ('input, ('ok, 'error) Core.Std.Result.t) t ->
    f:('error -> 'another_errror) ->
    ('input, ('ok, 'another_errror) Core.Std.Result.t) t
  val compose_results :
    on_error:([ `left of 'error_left | `right of 'error_right ] -> 'error) ->
    ('input_left, ('middle, 'error_left) Core.Std.Result.t) t ->
    ('middle, ('output_right, 'error_right) Core.Std.Result.t) t ->
    ('input_left, ('output_right, 'error) Core.Std.Result.t) t
  val compose_results_merge_error :
    ('a, ('b, 'el) Core.Std.Result.t) t ->
    ('b, ('d, 'er) Core.Std.Result.t) t ->
    ('a, ('d, [ `left of 'el | `right of 'er ]) Core.Std.Result.t) t
  val compose_result_left :
    ('input_left, ('middle, 'error) Core.Std.Result.t) t ->
    ('middle, 'output_right) t ->
    ('input_left, ('output_right, 'error) Core.Std.Result.t) t
  class type ['input, 'output] object_t =
    object
      method feed : 'input -> unit
      method next : [ `end_of_stream | `not_ready | `output of 'output ]
      method stop : unit
    end
  val to_object : ('a, 'b) t -> ('a, 'b) object_t
  val of_object : ('a, 'b) object_t -> ('a, 'b) t
  val make_general :
    ?name:string ->
    next:(unit -> [ `end_of_stream | `not_ready | `output of 'output ]) ->
    feed:('input -> unit) ->
    stop:(unit -> unit) -> unit -> ('input, 'output) t
end