You can search for identifiers within the package.
in-package search v0.2.0
iomux
Poll.Flags
The set of flags associated with a file descriptor event.
type t
The actual set.
val pollin : t
POLLIN from poll(2).
val pollpri : t
POLLPRI from poll(2).
val pollout : t
POLLOUT from poll(2).
val pollerr : t
POLLERR from poll(2). Only expected as output, invalid as input.
val pollhup : t
POLLHUP from poll(2). Only expected as output, invalid as input.
val pollnval : t
POLLNVAL from poll(2). Only expected as output, invalid as input.
val empty : t
aka zero.
val (+) : t -> t -> t
The union of flags, fancy way of doing lor.
lor
val mem : t -> t -> bool
mem x y checks if y belongs to m. The fancy way of doing land.
mem x y
y
m
land
val to_int : t -> int
to_int x exposes x as an integer, this is an identity function.
to_int x
x
val of_int : int -> t
of_int x imports x as t, this is an identity function.
of_int x
t