123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149moduletypeS=sig(*
type t = out_channel
*)typet=out_channel(** @since 4.14.0: type t = out_channel
*)(*
type open_flag = Out_channel.open_flag =
| Open_rdonly
| Open_wronly
| Open_append
| Open_creat
| Open_trunc
| Open_excl
| Open_binary
| Open_text
| Open_nonblock
*)typeopen_flag=|Open_rdonly|Open_wronly|Open_append|Open_creat|Open_trunc|Open_excl|Open_binary|Open_text|Open_nonblock(** @since 4.14.0:
type open_flag = Out_channel.open_flag =
| Open_rdonly
| Open_wronly
| Open_append
| Open_creat
| Open_trunc
| Open_excl
| Open_binary
| Open_text
| Open_nonblock
*)valoutput_bigarray:t->('a,Bigarray.int8_unsigned_elt,Bigarray.c_layout)Bigarray.Array1.t->int->int->unit(** @since 5.2.0:
val output_bigarray :
t ->
('a, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t
-> int -> int -> unit *)valis_binary_mode:t->bool(** @since 5.2.0: val is_binary_mode : t -> bool *)valisatty:t->bool(** @since 5.1.0: val isatty : t -> bool *)valstdout:t(** @since 4.14.0: val stdout : t *)valstderr:t(** @since 4.14.0: val stderr : t *)valopen_bin:string->t(** @since 4.14.0: val open_bin : string -> t *)valopen_text:string->t(** @since 4.14.0: val open_text : string -> t *)valopen_gen:open_flaglist->int->string->t(** @since 4.14.0: val open_gen : open_flag list -> int -> string -> t *)valwith_open_bin:string->(t->'a)->'a(** @since 4.14.0: val with_open_bin : string -> (t -> 'a) -> 'a *)valwith_open_text:string->(t->'a)->'a(** @since 4.14.0: val with_open_text : string -> (t -> 'a) -> 'a *)valwith_open_gen:open_flaglist->int->string->(t->'a)->'a(** @since 4.14.0:
val with_open_gen : open_flag list -> int -> string -> (t -> 'a) -> 'a *)valclose:t->unit(** @since 4.14.0: val close : t -> unit *)valclose_noerr:t->unit(** @since 4.14.0: val close_noerr : t -> unit *)valoutput_char:t->char->unit(** @since 4.14.0: val output_char : t -> char -> unit *)valoutput_byte:t->int->unit(** @since 4.14.0: val output_byte : t -> int -> unit *)valoutput_string:t->string->unit(** @since 4.14.0: val output_string : t -> string -> unit *)(*
val output_bytes : t -> bytes -> unit
*)valoutput_bytes:t->Stdcompat__init.bytes->unit(** @since 4.14.0: val output_bytes : t -> bytes -> unit
*)(*
val output : t -> bytes -> int -> int -> unit
*)valoutput:t->Stdcompat__init.bytes->int->int->unit(** @since 4.14.0: val output : t -> bytes -> int -> int -> unit
*)valoutput_substring:t->string->int->int->unit(** @since 4.14.0: val output_substring : t -> string -> int -> int -> unit *)valflush:t->unit(** @since 4.14.0: val flush : t -> unit *)valflush_all:unit->unit(** @since 4.14.0: val flush_all : unit -> unit *)valseek:t->int64->unit(** @since 4.14.0: val seek : t -> int64 -> unit *)valpos:t->int64(** @since 4.14.0: val pos : t -> int64 *)vallength:t->int64(** @since 4.14.0: val length : t -> int64 *)valset_binary_mode:t->bool->unit(** @since 4.14.0: val set_binary_mode : t -> bool -> unit *)valset_buffered:t->bool->unit(** @since 4.14.0: val set_buffered : t -> bool -> unit *)valis_buffered:t->bool(** @since 4.14.0: val is_buffered : t -> bool *)end