3
Generic Specializers
You can define generic functions that are a collection of methods specialized on the class of one or more arguments passed to the generic function. In other words, you can have multiple implementations of the same function which are focused on different objects, and this can make the code easier to maintain and develop as it avoids having to have a large cond or case function call within your code to switch between different objects.
This topic provides a list of the generic specializer functions.
Related Topics
Dependency Maintenance Protocol Functions
Return to top