I would like to add a method to a built-in type (say Double), so that I can use an infix operator. Is that possible?
|
|
|
|
|
|
|
Yes and no. Yes, you can make it seem like you have added a method to
This code adds the previously-unavailable
The "no" part of the answer comes from the fact that you aren't really adding anything to the Some limitations you should be aware of:
Idiomatically, implicit conversions are either placed within singleton objects and imported (e.g. Slight aside: "infix operators" in Scala are actually methods. There is no magic associated with the
The |
|||
|
|
|
|
This feature came in handy to implement a class performing error estimation:
|
|||
|
|
|
I just learned that there's a Scala design pattern for exactly this purpose: Pimp my library. |
||
|
|
