core :: Text :: group_exists
self
?
# Does the operating system know the group named `self`?
fun group_exists: Bool
do
var passwd = new Group.from_name(to_s)
return not passwd.address_is_null
end
lib/privileges/privileges.nit:34,2--39,4