Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
The lastest version of Class::Trait on my hard drive has experimental support for adding traits at runtime. However, I won't be uploading it right away. So far it works, but I need many more tests to ensure that everything behaves the way it should. There are odd corner cases that most people will never hit but I still need to make sure they work. I've worked on them for hours today and it's time to stop.
If Stevan hadn't made Class::Trait so feature complete, this would have been much easier, but much less useful, too
Mixing two concepts (Score:2)
The example they give is difficult for me to follow. How would this be handled in Class::Trait, and under what circumstances would you need it?
Re:Mixing two concepts (Score:2)
Which paper are you referring to? Do you mean the Scharli paper "Traits: Composable Units of Behavior"? There's no reference to interfaces there so I'm not sure if this is the paper you mean. As a guess, are you asking why composed traits might have unsatisfied method requirements which the class using the composed traits must provide? I can answer that pretty easily, but don't want to spend a lot of time getting into that if it's the wrong question :)
Re:Mixing two concepts (Score:2)
Re:Mixing two concepts (Score:2)
OK, that's what I thought you meant, but I wasn't sure.
The reason for this requirement is straightforward. Let's say I create a "TSpouse" trait. That trait might provide companionship() and irritation() but still require love(). My class or some other trait has to supply that method. Having single, standalone traits require methods seems fine. For a real example, in my test code I have "XML" and "HTML" traits which require an "attributes" method. That method is provided by my "Data store" trait whic
Re:Mixing two concepts (Score:2)