package core

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Structure of entries in the groups database.

Structure of entries in the groups database.

type t = {
  1. name : string;
  2. passwd : string;
  3. gid : int;
  4. mem : string array;
}
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val getbyname : string -> t option
val getbyname_exn : string -> t
val getbygid : int -> t option
val getbygid_exn : int -> t