Joshua Ballanco wrote: > In fact, it seems like the existence of eigenclasses is, to begin > with, an implementation detail. Originally, they were. > As it turns out, they can be very > handy for implementing instance-specific methods, Exactly. It is my understanding that they were only added as a place to "stick" per-object methods. MRI already had classes, so why not use them? If you stick per-object methods in an eigenclass you need exactly 0 new constructs in the interpreter, 0 changes to method lookup and just one if-condition in superclass lookup. Plus, you can also implement mixins the same way. That's a *lot* of leverage for essentially one line of code. AFAIK, the fact that they were exposed to the programmer is more of an accident than a well-designed thought-out language feature. jwm