What about writing a type parametric class Union, with implicit converters from A => B and B => A
class Union [A, B] {
getA = ...
getB = ...
}
which would work, if every B could be stored in an A, for example. Else, an intermediate, 3rd Type might be used, to store and restore values of type A and B, let's call it C.
class Union [A, B, C] (c: C) (implicit
a2c: (A => C),
b2c: (B => C),
c2a: (C => A),
c2b: (C => B)) {
def getA : A = c2a (c)
def getB : B = c2b (c)
}
As and Bs are stored as Cs, and there is a method, for A and one for B to get the value out of C again.
To use it, we take some demo-methods:
def l2i (l: List[Char]): Int =
(0 /: l.reverse.take (4).reverse) ((a, b) => (a * 255 + b))
def i2l (i: Int): List[Char] =
if (i < 255) List (i.toChar) else (i % 255).toChar :: toChars (i / 255)
def l2s (l: List[Char]): String =
l.mkString ("")
def s2l (s: String): List[Char] =
s.toCharArray.toList
and then we create a real Union (String/Int/List):
class UnionSIL (l: List[Char])
extends Union [String, Int, List[Char]]
(l: List[Char]) (s2l, i2l, l2s, l2i) {
def this (i: Int) = this (i2l (i))
def this (s: String) = this (s2l (s))
}
and test it:
val ui = new UnionSIL (44)
val us = new UnionSIL ("foobar")
List(ui, us).foreach (u => println (u.getA + ": " + u.getB))
,: 44
foobar: 1846929924
int type;chuckle ;-) – user166390 Oct 31 '10 at 20:29