To determine what names in a package are exported, the current conventions seems to be to have a very long list in the file that declares the module.
In my own development, I have followed this convention but found that this list often gets out of date as I refactor. The obvious solution is to export when and where you declare the names themselves. If we want to see a list of all the exported names then presumably this can easily be done automatically. Am I missing something, Is there any advantage to this convention? Zenna
