Up

Module Rlimit

Signature

type value = [
| `unlimited
| `limited of bigint
]
val value_of_sexp : Sexplib.Sexp.t -> value
val __value_of_sexp__ : Sexplib.Sexp.t -> value
val sexp_of_value : value -> Sexplib.Sexp.t
type t = {
soft
: value ;
hard
: value ;
}
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
val hard : t -> value
val soft : t -> value
module Fields : sig .. end