Since scala.runtime.RichString is declared as final, you can't extend it like class MyString extends RichString. I'd like to 'pimp the library' and simply add another method. How would I do this?
|
feedback
|
|
Since a key rule of implicits is that only one is ever applied to make a given (sub-)expression type-check, pimping So for practical purposes, what you're asking for isn't really possible in Scala. On the other hand, if you just need alternate augmentation of Additionally, this approach (an alternate, non-overlapping implicit conversion) won't break when you switch to Scala 2.8, which has To do this, you would do something similar to the following:
| ||||
|
feedback
|