Assume that I know a package's (Context?) name that is loaded. Now I want to list the functions defined in this package. How can I do it?
I remember that I found a way once, but I cannot re-find it. I tried some combinations with ?
but for vain.
Answer
Possibly this way:
<< PrimalityProving`
?PrimalityProving`*
or alternatively (see the copy&paste issue in the comments)
?"PrimalityProving`*"
See also the help under ref/Information
, subsection "Generalizations & Extensions". In some cases you have to provide a string argument:
Information["*Values"]
Comments
Post a Comment