1
vote
1answer
165 views

Safely chaining implicit conversions

You can do this to get implicit conversions to chain: package language object chainedImplicits { implicit def chainImplicits[A, B, C](a: A)(implicit conv1: A => B, conv2: B => C): C = ...
6
votes
2answers
239 views

Scala implicit Numeric[T] in companion object

I have the following generic Interval class (kindly formulated for me by user soc): case class Interval[T](from: T, to: T)(implicit num: Numeric[T]) { import num.mkNumericOps // allows us to write ...
3
votes
1answer
114 views

Why does scala compiler fail to find implicit parameter value/conversion when it is an overload and has generic type param?

Scala 2.8.1 Take the following class hierarchy abstract class A class B extends A class C extends A Why is the scala compiler unable to find the implicit parameter for send when sending an ...
3
votes
2answers
175 views

How to express (implicit conv: String => A) as a view bound

I am asking myself what would be the view bound equivalent to (implicit conv: String => A) My first attempt was to simply declare the type parameter A as follows: [String <% A] But the ...
98
votes
2answers
6k views

Where does Scala look for implicits?

An implicit question to newcomers to Scala seems to be: where does the compiler look for implicits? I mean implicit because the question never seems to get fully formed, as if there weren't words for ...
42
votes
3answers
2k views

How can I chain implicits in Scala?

The pimp my library pattern allows me to seemingly add a method to a class by making available an implicit conversion from that class to one that implements the method. Scala does not allow two such ...
2
votes
2answers
857 views

Could not find implicit value for parameter ordering

I get the following error when trying to compile this: Btree.scala:9: error: could not find implicit value for parameter ordering: Ordering[K] abstract class Node[K,V] extends TreeMap[K,V] ...