package uwt
libuv bindings
Install
dune-project
Dependency
Authors
Maintainers
Sources
uwt-0.3.3.tar.gz
sha256=9e653a9fc7a13c5435a58780ddf02ff15c8ff92f63f6ff4406b1d312e3060807
md5=549517d3e9bcf5533097e4c83f891e2c
doc/uwt.compat/Uwt_compat/Lwt_io/BE/index.html
Module Lwt_io.BE
Reading/writing of numbers in big-endian
Reading
val read_int : input_channel -> int Lwt.tReads a 32-bits integer as an ocaml int
val read_int16 : input_channel -> int Lwt.tval read_int32 : input_channel -> int32 Lwt.tval read_int64 : input_channel -> int64 Lwt.tval read_float32 : input_channel -> float Lwt.tReads an IEEE single precision floating point value
val read_float64 : input_channel -> float Lwt.tReads an IEEE double precision floating point value
Writing
val write_int : output_channel -> int -> unit Lwt.tWrites an ocaml int as a 32-bits integer
val write_int16 : output_channel -> int -> unit Lwt.tval write_int32 : output_channel -> int32 -> unit Lwt.tval write_int64 : output_channel -> int64 -> unit Lwt.tval write_float32 : output_channel -> float -> unit Lwt.tWrites an IEEE single precision floating point value
val write_float64 : output_channel -> float -> unit Lwt.tWrites an IEEE double precision floating point value