|
Problem:
You want your class to inherit from a builtin type. Solution:
Just do it:
Discussion: Subclassing builtin types is an extremely powerful way to create objects that act, for almost all intensive purposes, like those builtin types. See Section 6 to learn what builtin types exist in perl, and how to subclass them.
|