Tagged Questions
17
votes
3answers
2k views
5
votes
3answers
559 views
scala: mixins depending on type of arguments
I have a set of classes of models, and a set of algorithms that can be run on the models. Not all classes of models can perform all algorithms. I want model classes to be able to declare what ...
3
votes
2answers
507 views
How are Scala's traits not really traits?
Someone recently told me that Scala's traits aren't "true" traits, and that they were really just mixins. Unfortunately, I didn't get the opportunity to ask him why. Does anyone have an idea what he ...
2
votes
2answers
124 views
Concurrency Actors and Traits in Scala
Folks,
I'm new to Scala and am trying to figure something out. I've been messing around a bit with traits and I really like their ability to "mix in" functionality and interface. I've also been ...