package hxd

  1. Overview
  2. Docs
Hexdump in OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

hxd-v0.1.0.tbz
sha256=0a0ad52f9441e8eed59115dc0af67ad50caf10b0334a8b61ce0565afad4ff0db
sha512=28437a6eb021643b1dcc6f3841248ca365181168b14895a195c29a83351307ffef5c48a2f6adfb727654e2683de62569381135b418deeb47de944c4a17f34ba9

doc/hxd.core/Hxd/S/index.html

Module Hxd.S

type ('a, 's) io
type 's scheduler = {
  1. bind : 'a 'b. ('a, 's) io -> ('a -> ('b, 's) io) -> ('b, 's) io;
  2. return : 'a. 'a -> ('a, 's) io;
}
type ('f, 's, 'e) seek = {
  1. lseek : 'f -> int -> [ `SET | `CUR | `END ] -> ((int, 'e) result, 's) io;
}
module type X = sig ... end
module type FUNCTOR = sig ... end
module Make (T : FUNCTOR) : X with type 'a s = 'a T.t
module type IFLOW = sig ... end
module type OFLOW = sig ... end
type ('f, 'b, 's, 'e) iflow = (module IFLOW with type buffer = 'b and type error = 'e and type flow = 'f and type scheduler = 's)
type ('f, 'b, 's, 'e) oflow = (module OFLOW with type buffer = 'b and type error = 'e and type flow = 'f and type scheduler = 's)
OCaml

Innovation. Community. Security.