Tagged Questions
9
votes
1answer
176 views
Scala - Co/Contra-Variance as applied to implicit parameter selection
I've got a trait like this:
trait CanFold[-T, R] {
def sum(acc: R, elem: T): R
def zero: R
}
With a function that works with it like this:
def sum[A, B](list: Traversable[A])(implicit adder: ...