On a particular namespace I am working on I am beginning to run out of function names. Is there a way to get a warning like the one I get if I override a symbol from another namespace if I reuse a symbol which is already bound to a function in the same namespace?
|
|
If this is enough of a problem that you'd be willing to replace a (set of) core macro(s), you could try this approach:
Then any attempt to redefine an existing Var with
You could similarly replace Plain, unadorned |
|||
|
|
This isn't quite an answer to your question but may help avoid the issue depending on how the functions in your namespace are being used. You could make them into local functions using letfn, allowing you to reuse names for functions that are only used within the context of another function.
|
||||
|
|
|
Even if you restrict yourself to single-character function names, you are in no danger of running out, as there are (about) 64 thousand Unicode characters, any one of which is a valid function name. Given that you can in fact have names that are ten thousand characters long, you are on even safer ground. |
|||
|