type t = {name : string; |
passwd : string; |
uid : int; |
gid : int; |
gecos : string; |
dir : string; |
shell : string; |
}include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> tval sexp_of_t : t -> Sexplib0.Sexp.tval getbyname : string -> t optionval getbyname_exn : string -> tval getbyuid : int -> t optionval getbyuid_exn : int -> tval getpwents : unit -> t listgetpwents is a thread-safe wrapper over the low-level passwd database functions. The order in which the results are returned is not deterministic.
module Low_level : sig ... end