With regards to `save` specifically, if your package uses FileIO then there should not be any conflicts---it's kinda the whole point of FileIO. You register your file format with FileIO, and then your package should not export its own load/save functions. FileIO will dispatch to them by qualifying with the module name.
Best, --Tim On Sunday, December 20, 2015 01:28:58 AM cormull...@mac.com wrote: > Thanks Jeff. > > It would be cool if you could say somewhere that the default (unqualified) > function call always uses A, but that you can sometimes use a qualified > version (B). One day, perhaps... :)