If I have functions in two packages that have parameters such as length_, width_ and height_; is there any way to have both packages loaded without generating messages such as "Symbol length appears in multiple contexts"?
Is there any way to make function parameters local instead of global?
Do all function names and parameters need to be unique across packages?
Private`sub-context for implementation code. Those symbols (local variables) are then generated in public context and exported as well, when the context is loaded. – Leonid Shifrin Nov 13 '14 at 19:45