You can search for identifiers within the package.
in-package search v0.2.0
uring
Statx.Attr
include FLAGS
type t = private int
A set of flags.
val of_int : int -> t
val (+) : t -> t -> t
a + b is the union of the sets.
a + b
val mem : t -> t -> bool
mem x flags is true iff x is a subset of flags.
mem x flags
true
x
flags
val compressed : t
val immutable : t
val append : t
val nodump : t
val encrypted : t
val verity : t
val dax : t
Since Linux 5.8
val check : ?mask:Int64.t -> Int64.t -> t -> bool
check ?mask attr t will check if t is set in attr.
check ?mask attr t
t
attr
If mask is not None then it will first check the mask to see if the file attribute is supported and if not raise Invalid_argument.
mask
None
Invalid_argument