Module Async_unix.Unix_syscalls.Group

Structure of entries in the groups database.

type t = Core.Unix.Group.t = {
name : string;
passwd : string;
gid : int;
mem : string array;
}
include sig ... end
val t_of_sexp : Sexplib.Sexp.t ‑> t
val sexp_of_t : t ‑> Sexplib.Sexp.t
val mem : t ‑> string array
val gid : t ‑> int
val passwd : t ‑> string
val name : t ‑> string
module Fields : sig ... end
val getbyname : string ‑> t option Import.Deferred.t
val getbyname_exn : string ‑> t Import.Deferred.t
val getbygid : int ‑> t option Import.Deferred.t
val getbygid_exn : int ‑> t Import.Deferred.t