Tagged Questions
2
votes
2answers
861 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]
...