|
[Date Index]
[Thread Index]
[Author Index]
Re: Finding what is in a package
- To: mathgroup at smc.vnet.net
- Subject: [mg26696] Re: [mg26679] Finding what is in a package
- From: "Christopher J. Purcell" <purcell at drea.dnd.ca>
- Date: Thu, 18 Jan 2001 00:57:07 -0500 (EST)
- References: <200101170547.AAA12701@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
To check that all exported symbols are documented use Roman Maeder's
SystemProgramming package described, I believe, in his second book:
<< "Maeder`SystemProgramming`"
Select[SymbolsInContext["yourpackage`"],
UndocumentedQ[#1] & ]
>I am developing a package -- and I would like to get
>a list of all functions for which I've written a usage message,
>so that I can see what I have and what I don't have.
>
>How can I do it? ( I don't want all the functions to start
>with the same letter! )
>
>Yossi Lonke
--
Dr. Christopher J. Purcell
GL/Trans
Defence Research Establishment Atlantic
9 Grove St., Dartmouth, NS Canada B2Y 3Z7
Tel: 902-426-3100-x389
Fax: 902-426-9654
E-mail: purcell at drea.dnd.ca
Prev by Date:
Re: Finding what is in a package
Next by Date:
Book
Previous by thread:
Finding what is in a package
Next by thread:
Re: Finding what is in a package
|