package conan

  1. Overview
  2. Docs
Identify type of your file (such as the MIME type)

Install

dune-project
 Dependency

Authors

Maintainers

Sources

conan-0.0.7.tbz
sha256=e196f218b9cf44899143cbceef58be8e5116601fc524249e958eee06e1f87415
sha512=38024e10308a92e8487ace257e18a968e1cc7ea1991e6150c10ae3232af4812fe96583ea36f54cc6e42cf91a2f04eec1dae323dfda64268469db7769d38ef2cc

doc/src/conan/sigs.ml.html

Source file sigs.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
type (+'a, 's) io

type 's scheduler = {
  bind : 'a 'b. ('a, 's) io -> ('a -> ('b, 's) io) -> ('b, 's) io;
  return : 'a. 'a -> ('a, 's) io;
}

type where = SET | CUR | END

type ('fd, 'error, 's) syscall = {
  seek : 'fd -> int64 -> where -> ((unit, 'error) result, 's) io;
  read : 'fd -> int -> ((string, 'error) result, 's) io;
  line : 'fd -> ((int * int * string, 'error) result, 's) io;
  read_int8 : 'fd -> ((int, 'error) result, 's) io;
  read_int16_ne : 'fd -> ((int, 'error) result, 's) io;
  read_int32_ne : 'fd -> ((int32, 'error) result, 's) io;
  read_int64_ne : 'fd -> ((int64, 'error) result, 's) io;
}