As shown below, in Haskell, it's possible to store in a list values with heterogeneous types with certain context bounds on them:

data ShowBox = forall s. Show s => ShowBox s

heteroList :: [ShowBox]
heteroList = [ShowBox (), ShowBox 5, ShowBox True]

How can I achieve the same in Scala, preferably without subtyping?

link|improve this question

I don't know enough Scala, but I'm not 100% sure it has existentially quantified types. Maybe try googling around for that a bit. – Michael Kohl Aug 27 '11 at 9:44
@Michael Kohl: They can be emulated in Scala. – missingfaktor Aug 27 '11 at 9:52
Also, I found this in my google search, but I don't know how to use it. (Actually I don't know whether it's even relevant to the problem.) – missingfaktor Aug 27 '11 at 9:53
to be strict, it is GHC extension, not pure standardized Haskell - en.wikibooks.org/wiki/Haskell/Existentially_quantified_types. – shabunc Aug 30 '11 at 18:41
feedback

5 Answers

up vote 40 down vote accepted

As @Michael Kohl commented, this use of forall in Haskell is an existential type and can be exactly replicted in Scala using either the forSome construct or a wildcard. That means that @paradigmatic's answer is largely correct.

Nevertheless there's something missing there relative to the Haskell original which is that instances of its ShowBox type also capture the corresponding Show type class instances in a way which makes them available for use on the list elements even when the exact underlying type has been existentially quantified out. Your comment on @paradigmatic's answer suggests that you want to be able to write something equivalent to the following Haskell,

data ShowBox = forall s. Show s => ShowBox s

heteroList :: [ShowBox]
heteroList = [ShowBox (), ShowBox 5, ShowBox True]

useShowBox :: ShowBox -> String
useShowBox (ShowBox s) = show s

-- Then in ghci ...

*Main> map useShowBox heteroList
["()","5","True"]

@Kim Stebel's answer shows the canonical way of doing that in an object-oriented language by exploiting subtyping. Other things being equal, that's the right way to go in Scala. I'm sure you know that, and have good reasons for wanting to avoid subtyping and replicate Haskell's type class based approach in Scala. Here goes ...

Note that in the Haskell above the Show type class instances for Unit, Int and Bool are available in the implementation of the useShowBox function. If we attempt to directly translate this into Scala we'll get something like,

trait Show[T] { def show(t : T) : String }

// Show instance for Unit
implicit object ShowUnit extends Show[Unit] {
  def show(u : Unit) : String = u.toString
}

// Show instance for Int
implicit object ShowInt extends Show[Int] {
  def show(i : Int) : String = i.toString
}

// Show instance for Boolean
implicit object ShowBoolean extends Show[Boolean] {
  def show(b : Boolean) : String = b.toString
}

case class ShowBox[T: Show](t:T)

def useShowBox[T](sb : ShowBox[T]) = sb match {
  case ShowBox(t) => implicitly[Show[T]].show(t)
  // error here      ^^^^^^^^^^^^^^^^^^^
} 

val heteroList: List[ShowBox[_]] = List(ShowBox(()), ShowBox(5), ShowBox(true))

heteroList map useShowBox

and this fails to compile in useShowBox as follows,

<console>:14: error: could not find implicit value for parameter e: Show[T]
         case ShowBox(t) => implicitly[Show[T]].show(t)
                                      ^

The problem here is that, unlike in the Haskell case, the Show type class instances aren't propagated from the ShowBox argument to the body of the useShowBox function, and hence aren't available for use. If we try to fix that by adding an additional context bound on the useShowBox function,

def useShowBox[T : Show](sb : ShowBox[T]) = sb match {
  case ShowBox(t) => implicitly[Show[T]].show(t) // Now compiles ...
} 

this fixes the problem within useShowBox, but now we can't use it in conjunction with map on our existentially quantified List,

scala> heteroList map useShowBox
<console>:21: error: could not find implicit value for evidence parameter
                     of type Show[T]
              heteroList map useShowBox
                             ^

This is because when useShowBox is supplied as an argument to the map function we have to choose a Show instance based on the type information we have at that point. Clearly there isn't just one Show instance which will do the job for all of the elements of this list and so this fails to compile (if we had defined a Show instance for Any then there would be, but that's not what we're after here ... we want to select a type class instance based on the most specific type of each list element).

To get this to work in the same way that it does in Haskell, we have to explicitly propagate the Show instances within the body of useShowBox. That might go like this,

case class ShowBox[T](t:T)(implicit val showInst : Show[T])

val heteroList: List[ShowBox[_]] = List(ShowBox(()), ShowBox(5), ShowBox(true))

def useShowBox(sb : ShowBox[_]) = sb match {
  case sb@ShowBox(t) => sb.showInst.show(t)
}

then in the REPL,

scala> heteroList map useShowBox
res7: List[String] = List((), 5, true)

Note that we've desugared the context bound on ShowBox so that we have an explicit name (showInst) for the Show instance for the contained value. Then in the body of useShowBox we can explicitly apply it. Also note that the pattern match is essential to ensure that we only open the existential type once in the body of the function.

As should be obvious, this is a lot more vebose than the equivalent Haskell, and I would strongly recommend using the subtype based solution in Scala unless you have extremely good reasons for doing otherwise.

Edit

As pointed out in the comments, the Scala definition of ShowBox above has a visible type parameter which isn't present in the Haskell original. I think it's actually quite instructive to see how we can rectify that using abstract types.

First we replace the type parameter with an abstract type member and replace the constructor parameters with abstract vals,

trait ShowBox {
  type T
  val t : T
  val showInst : Show[T]
}

We now need to add the factory method that case classes would otherwise give us for free,

object ShowBox {
  def apply[T0 : Show](t0 : T0) = new ShowBox {
    type T = T0
    val t = t0
    val showInst = implicitly[Show[T]]
  } 
}

We can now use plain ShowBox whereever we previously used ShowBox[_] ... the abstract type member is playing the role of the existential quantifier for us now,

val heteroList: List[ShowBox] = List(ShowBox(()), ShowBox(5), ShowBox(true))

def useShowBox(sb : ShowBox) = {
  import sb._
  showInst.show(t)
}

heteroList map useShowBox

(It's worth noting that prior to the introduction of explict forSome and wildcards in Scala this was exactly how you would represent existential types.)

We now have the existential in exactly the same place as it is in the original Haskell. I think this is as close to a faithful rendition as you can get in Scala.

link|improve this answer
1  
Great answer. Thanks so much! – missingfaktor Aug 27 '11 at 18:57
4  
ShowBox in the question does not take a type parameter. The whole point of the existential type is to hide this type parameter. – Apocalisp Aug 27 '11 at 21:34
feedback

First-class values in Scala cannot be explicitly quantified with forall. However, every method on a module can be. So you can effectively use type constructor polymorphism as universal quantification. Example:

trait Forall[F[_]] {
  def apply[A]: F[A]
}

A value of type Forall[F] is evidence that forall A. F[A].

We can use this technique to add constraints to the type argument.

trait SuchThat[F[_], G[_]] {
  def apply[A:G]: F[A]
}

A value of type F SuchThat G is evidence that forall A. G[A] => F[A]. But the G[A] is implicitly looked up by Scala if it exists.

Now, we can use this to encode your ShowBox ...

import scalaz._; import Scalaz._ // to get the Show typeclass and instances

type ShowUnbox[A] = ({type f[S] = S => A})#f SuchThat Show

sealed trait ShowBox {
  def apply[B](f: ShowUnbox[B]): B  
}

object ShowBox {
  def apply[S: Show](s: => S): ShowBox = new ShowBox {
    def apply[B](f: ShowUnbox[B]) = f[S].apply(s)
  }
  def unapply(b: ShowBox): Option[String] =
    b(new ShowUnbox[Option[String]] {
      def apply[S:Show] = s => some(s.shows)
  })
}

val heteroList: List[ShowBox] = List(ShowBox(()), ShowBox(5), ShowBox(true))

Here's an example usage:

scala> heteroList map { case ShowBox(x) => x }
res6: List[String] = List((), 5, true)

Note on the existential type:

It's possible to write a general unapply for ShowBox, which unwraps the box but leaves the existential type in place. But an escaping existential type (which becomes Any in the pattern) is inherently unsound. Don't do this.

def unapply(b: ShowBox): Option[S forSome { type S }] =
  b(new ShowUnbox[Option[S] forSome { type S }] {
    def apply[S:Show] = s => some(s)
})

This is all using the Show typeclass from Scalaz.

link|improve this answer
Nice, but you're starting from a different use of forall in Haskell. The one in the original question is existential quantification, not rank-n types. – Miles Sabin Aug 27 '11 at 20:00
Nonsense. The use of forall here is a universal quantifier in the eliminator type. It is existential with regard to the overall data type, but that's not of interest here. When turned to its Church encoding, it really is just a universal quantifier, which Scala supports in a straightforward way. – Apocalisp Aug 27 '11 at 20:20
In the original "data ShowBox = forall ..." the forall is an existential quantifier. You've not reflected that directly in your answer. – Miles Sabin Aug 27 '11 at 20:35
Yes I have. In fact, I've done it in the exact same way as Haskell encodes existentials: hackage.haskell.org/trac/haskell-prime/wiki/… – Apocalisp Aug 27 '11 at 20:50
scala> type X[A, B] = A Tuple2 B defined type alias X Holy cow. I'd never seen binary type constructors used like that before. Awesome. – Kris Nuttycombe Aug 27 '11 at 21:00
show 5 more comments
feedback

I don't think a 1 to 1 translation from haskell to scala is possible here. But why don't you want to use subtyping? If the types you want to use (such as Int) lack a show method, you can still add this via implicit conversions.

scala> trait Showable { def show:String }
defined trait Showable

scala> implicit def showableInt(i:Int) = new Showable{ def show = i.toString }
showableInt: (i: Int)java.lang.Object with Showable

scala> val l:List[Showable] = 1::Nil
l: List[Showable] = List($anon$1@179c0a7)

scala> l.map(_.show)
res0: List[String] = List(1)
link|improve this answer
Say I have various data types the only common thing among which is that they satisfy certain context bounds. I want to take a collection of values of these data types, and apply them the functions allowed by their context bounds. – missingfaktor Aug 27 '11 at 10:43
You can't do that because context bounds are not part of the type. – Kim Stebel Aug 27 '11 at 10:49
1  
They aren't in Haskell either. However rank-2 types provide the way to treat them polymorphically. I am wondering if that's possible in Scala too. – missingfaktor Aug 27 '11 at 10:54
feedback

( Edit: Adding methods to show, to answer comment. )

I think you can get the same using implicit methods with context bounds:

trait Show[T] {
  def apply(t:T): String
}
implicit object ShowInt extends Show[Int] {
  def apply(t:Int) = "Int("+t+")"
}
implicit object ShowBoolean extends Show[Boolean] {
  def apply(t:Boolean) = "Boolean("+t+")"
}

case class ShowBox[T: Show](t:T) {
  def show = implicitly[Show[T]].apply(t)
}

implicit def box[T: Show]( t: T ) =
  new ShowBox(t)

val lst: List[ShowBox[_]] = List( 2, true )

println( lst ) // => List(ShowBox(2), ShowBox(true))

val lst2 = lst.map( _.show )

println( lst2 ) // => List(Int(2), Boolean(true))
link|improve this answer
No, not quite. In Haskell's case, I can apply functions to the elements of list based on the constraints put in them. I can't do the same in Scala (with your approach, that is). – missingfaktor Aug 27 '11 at 9:49
feedback

Why not:

trait ShowBox {
    def show: String
}

object ShowBox {
    def apply[s](x: s)(implicit i: Show[s]): ShowBox = new ShowBox {
        override def show: String = i.show(x)
    }
}

As the authorities' answers suggested, I'm often surprised that Scala can translate "Haskell type monsters" into very simple one.

link|improve this answer
This is not isomorphic to the code snippet I have posted. Actually it's not even close. – missingfaktor Aug 28 '11 at 14:39
While porting parsec3 to Scala, I probably understand your question. – MB_ Aug 31 '11 at 14:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.