getGroupGuid function

Group getGroupGuid(
  1. int gid
)

Search for a Group with a matching group ID.

This is an wrapper for the posix getgrgid function.

If no Group is found for the group ID then a PosixException is thrown.

Implementation

Group getGroupGuid(
  int gid,
) =>
    getgrgid(gid);