Tagged Questions
9
votes
1answer
296 views
Distinction between type aliases and type lambdas
This question is about a limitation of Scala's implicit resolution system that I've run into a few times when using Scalaz and that doesn't make a lot of sense to me. I've distilled the problem to a ...
13
votes
5answers
270 views
Scala view application puzzler
Say we have the following two traits:
trait Foo[A] { def howMany(xs: List[A]) = xs.size }
trait Bar
And an implicit conversion from the second to the first:
implicit def bar2foo[A](bar: Bar) = new ...
3
votes
1answer
370 views
Can Scala's implicits compose to convert higher-kinded types?
Let's say I have a type called LongArrayWritable, that is a boxed representation of an Array of Longs. I have implicit definitions that convert between these types:
implicit def boxLongArray(array: ...