I have a question regarding type-inferencing on Scala's type-constructors. I'm running Scala 2.9.1...
Suppose I defined Tree:
sealed trait Tree[C[_], A]
case class Leaf[C[_], A](a: A) extends Tree[C, A]
case class Node[C[_], A](a: A, c: C[Tree[C, A]]) extends Tree[C, A]
And defined a BinaryTree based upon my Tree definition:
type Pair[A] = (A, A)
type BinaryTree[A] = Tree[Pair, A]
I can now define a BinaryTree of integers as such:
val tree: BinaryTree[Int] = Node[Pair, Int](1, (Leaf(2), Leaf(3)))
The problem with this is that I have to supply the type parameters whenever I instantiate Node.
So if do this:
val tree: BinaryTree[Int] = Node(1, (Leaf(2), Leaf(3)))
I get the error:
error: no type parameters for method apply: (a: A, c: C[Tree[C,A]])Node[C,A] in
object Node exist so that it can be applied to arguments (Int, (Leaf[Pair,Int], Leaf[Pair,Int]))
--- because ---
argument expression's type is not compatible with formal parameter type;
found : (Leaf[Pair,Int], Leaf[Pair,Int])
required: ?C[Tree[?C,?A]]
val tree: BinaryTree[Int] = Node(1, (Leaf(2), Leaf(3)))
^
Is there any way I can coerce the type-checker so that I don't have to explicitly supply the types of Node?
Thanks!
Revised After didierd's Comments
If I'm understanding correctly, the statement
type Pair[A] = (A, A)
in my original question doesn't work since this Pair declaration is just syntactic sugar for a Tuple2 type-constructor (which requires two type-parameters). This causes the type-inferencer to fail.
If I declare my own Pair class (as didierd suggests in his answer), I'm successful in getting the Tree to work correctly.
// Assume same Tree/Leaf/Node definition given above
case class MyPair[A](_1: A, _2: A)
type BinaryTree[A] = Tree[MyPair, A]
Then I can do this...
scala> val t: BinaryTree[Int] = Leaf(3)
t: BinaryTree[Int] = Leaf(3)
scala> val t2: BinaryTree[Int] = Node(1, MyPair(Leaf(2), Leaf(3)))
t2: BinaryTree[Int] = Node(1,MyPair(Leaf(2),Leaf(3)))
I know didierd mentioned this solution in passing, but this seems to behave the way I want. Please let me know what you think!