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
dylan
orcommon-dylan
libraries, 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-utils
module.It provides alternative, shorter, names for some
dylan
andcommon-dylan
module bindings, the prime example being<integer> => <int>
. These shorter names are exported from theuncommon-brevity
module.If both
common-dylan
anduncommon-brevity
are 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-dylan
module instead; it exports everything from both modules but excludes the original long names.
Enjoy.