uncommon-dylan¶
The uncommon-dylan library is two things:
It is a collection of utilities that may potentially be useful to any Dylan library. That is, they are small utilities that you might reach for on occasion but were not provided by the
dylanorcommon-dylanlibraries, either because they weren’t considered at all or because they weren’t considered to be important enough to be in the core libraries. These utilities are exported by theuncommon-utilsmodule.It provides alternative, shorter, names for some
dylanandcommon-dylanmodule bindings, the prime example being<integer> => <int>. These shorter names are exported from theuncommon-brevitymodule.If both
common-dylananduncommon-brevityare used, then both the long name (ex:<integer>) and short name (ex:<int>) will be available to your module. If you want only the short names, you may use theuncommon-dylanmodule instead; it exports everything from both modules but excludes the original long names.
Enjoy.