http://qs321.pair.com?node_id=357893


in reply to Re: Implementing a Mixin Class (please explain?)
in thread Implementing a Mixin Class

One definition of a mixin can be found at http://en.wikipedia.org/wiki/Mixin.

  • Comment on Re: Re: Implementing a Mixin Class (please explain?)

Replies are listed 'Best First'.
Re: Re: Re: Implementing a Mixin Class (please explain?)
by Seumas (Curate) on Jun 01, 2004 at 01:35 UTC
    Pretty brief description, but... from what I gather, it's nothing more than having a package that contains a bunch of methods that you allow to be exported and then having other classes import them?

    I have a ::Util class I fill with a handful of methods that don't particularly belong anywhere and aren't worth having their own class which I then import into other packages. Is this what is considered a "mixin"?

    Sorry if I come across a bit daft. Using Perl as a first exposure to OOP is brain-damaging.