module Flags:sig..end
type t 
Epoll.Flags.t is an immutable set of flags for which one can register
        interest for a file descriptor.  It is implemented as a bitmask, and so all
        operations (+, -, etc.) are constant time with no allocation.
        sexp_of_t produces a human-readable list of bits, e.g. "(in out)".
include Interfaces.Intable
val equal : t -> t -> boolval none : tval in_ : tval out : tval pri : tval err : tval hup : tval et : tval oneshot : tval (+) : t -> t -> tval (-) : t -> t -> tval flag_and : t -> t -> tval flag_not : t -> tval do_intersect : t -> t -> boolval are_disjoint : t -> t -> boolval sexp_of_t : t -> Sexplib.Sexp.t