This is more of a scala related question, have a look at the case classes
in scala http://www.scala-lang.org/old/node/107
Thanks
Best Regards
On Tue, Aug 25, 2015 at 6:55 PM, wrote:
> Hi all,
>
> I have SomeClass[TYPE] { def some_method(args: fixed_type_args): TYPE }
>
> And on runtime, I creat
Hi all,
I have SomeClass[TYPE] { def some_method(args: fixed_type_args): TYPE }
And on runtime, I create instances of this class with different AnyVal + String
types, but the return type of some_method varies.
I know I could do this with an implicit object, IF some_method received a type,
but