finding exported clauses

Matthias Lang matthias@REDACTED
Wed Dec 7 09:16:38 CET 2005


Tom Whitcomb writes:

 > getExportedClauses(Module) -> [clause] 
 > getExportedClauses() -> [{module,clause}]

try

  Module:module_info()
  Module:module_info(exports)

e.g.

  io:module_info(exports).

see also

  code:all_loaded()

Matthias



More information about the erlang-questions mailing list