RE: How to display package contents?
- To: mathgroup at smc.vnet.net
 - Subject: [mg36749] RE: [mg36734] How to display package contents?
 - From: "DrBob" <drbob at bigfoot.com>
 - Date: Sun, 22 Sep 2002 04:32:32 -0400 (EDT)
 - Reply-to: <drbob at bigfoot.com>
 - Sender: owner-wri-mathgroup at wolfram.com
 
To find out what loaded contexts are related to the package, use:
Contexts["Integrate`*"]
{Integrate`,Integrate`Elliptic`}
To see the symbols exported by the context, execute:
Names["Integrate`*"]
{(* too many to list here *)}
Names["Integrate`*`*"]
{Integrate`Elliptic`Elliptic}
To find out what context a symbol comes from:
Context["Integrate"]
System`
Bobby Treat
-----Original Message-----
From: jose flanigan [mailto:jflanigan at netzero.net] 
To: mathgroup at smc.vnet.net
Subject: [mg36749] [mg36734] How to display package contents?
After I load  a package using
<<packagename
Is there a way to figure out what the package exports without editing
the source file?
Thanks