Find All the Functions Sharing a Particular Group

DESCRIPTION:

Returns the names of all the functions currently having group as the name(s) of their group generic(s).

USAGE:

getGroupMembers ( group , recursive )

REQUIRED ARGUMENTS:

group
Name of the group generic.

OPTIONAL ARGUMENTS:

recursive
If recursive = T, includes all the functions in the groups that the returned functions define, except for the intermediate group generic functions.

VALUE:

Character vector of function names.

SEE ALSO:

, ,

EXAMPLES:

getGroupMembers("Arith")
## returns "-"  "+"  "*"  "^"  "%%"  "%/%"  "/"
getGroupMembers("Ops")
## returns "Arith"  "Compare"  "Logic"