package numalib

  1. Overview
  2. Docs
Interface to Linux NUMA API

Install

Dune Dependency

Authors

Maintainers

Sources

numalib-0.1.0.tbz
sha256=a320381725bb2f8cb91ab77d4b09af018ecb2384ac6d48c96c1031fcec34c308
md5=e6d514a11d4983245240077eaaeb0167

doc/src/numalib.raw/io_intf.ml.html

Source file io_intf.ml

1
2
3
4
5
6
7
8
9
10
11
module type S = sig
  type 'a t

  val wrap   : ('a -> 'b) -> 'a -> 'b t

  val bind   : 'a t -> f:('a -> 'b t) -> 'b t
  val map    : 'a t -> f:('a -> 'b) -> 'b t
  val return : 'a -> 'a t
  val (>>=)  : 'a t -> ('a -> 'b t) -> 'b t
  val (>>|)  : 'a t -> ('a -> 'b) -> 'b t
end
OCaml

Innovation. Community. Security.