Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
input_channel.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
open! Core open! Async include Input_channel0 module Output_channel = Output_channel0 type slice = Bytebuffer.Slice.t = private { buf : Bigstring.t ; pos : int ; len : int } let of_pipe info reader = Unix.pipe info >>| fun (`Reader rd, `Writer wr) -> let input_channel = create rd in let output_channel = Output_channel.create wr in don't_wait_for (let%bind () = Output_channel.write_from_pipe output_channel reader in Output_channel.close output_channel); input_channel ;;