The last statement line below produces an error: "type mismatch; found: TestExpandableWithLibrary.this.library.type (with underlying type org.typeclass.Library) required: V"
This is where I am trying to do an implicit conversion. The preceding line where I simply use the typeclass function does work fine.
Any ideas on how to fix it?
package org.typeclass
///////////////////////////////////////////////////////////////////////////////
// the domain objects
case class Book(bookName: String)
case class Library(libraryName: String, books: Set[Book])
object Library {
def apply(libraryName: String, bookNames: String*): Library =
Library(libraryName, bookNames.map(Book(_)).toSet)
}
case class TreeClass(nodeName: String, children: Seq[TreeClass])
///////////////////////////////////////////////////////////////////////////////
// the typeclass definition
trait Expandable[T, V, R] {
def expandWith(template: T, values: V): R
}
object Expandable {
def expandWithF[T, V, R](template: T, values: V)(implicit ev: Expandable[T, V, R]): R =
ev.expandWith(template, values)
implicit class ExpandableItem[T, V, R](val template: T) extends AnyVal {
def expandWithM(values: V)(implicit ev: Expandable[T, V, R]): R =
ev.expandWith(template, values)
}
}
///////////////////////////////////////////////////////////////////////////////
// a typeclass implementation
object ExpandableImpls {
implicit object ExpandableTreeClass extends Expandable[TreeClass, Library, TreeClass] {
def expandWith(template: TreeClass, library: Library): TreeClass = {
val parentName = s"${template.nodeName}.${library.libraryName}"
val children = library.books.map(book => TreeClass(s"${parentName}.${book.bookName}", Seq.empty)).toSeq
TreeClass(parentName, children)
}
}
}
//@RunWith(classOf[JUnitRunner])
class TestExpandableWithLibrary /*extends FlatSpec*/ {
import Expandable._
import ExpandableImpls._
val library = Library("test", "black", "white")
val root = TreeClass("parent", Seq.empty)
val useF = expandWithF(root, library) // this works
val useM = root.expandWithM(library) // this doesn't work!
}