Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
463 views

Can Map be performed on a Scala HList

I have done a few implementations of HList now. One based on Daniel Spiewak's High Wizardry in the Land of Scala talk and another based on a post in Apocalisp blog. The goal was to have a ...
14
votes
3answers
524 views

Applying an argument list to curried function using foldLeft in Scala

Is it possible to do a foldLeft on a list of arguments, where the initial value supplied to the fold is a fully curried function, the operator is apply, and the list is a list of arguments to be ...
3
votes
1answer
246 views

Scala compile-time recursion?

As a result of some helpful answers to a question I posted yesterday about tuples in Scala, I've been looking at Scala HLists. I'd like to re-hash a C++ example from that question to ask another: In ...
3
votes
1answer
243 views

Basic Haskell monomorphism/polymorphism question (HList)

I'm a Haskell and a Stackoverflow noob, and here's my first & probably quite basic Haskell question. module M where import Data.HList data R r a r1 = undefined :: R a Int r2 = undefined :: R ...
3
votes
2answers
292 views

How to correctly type-annotate this HList?

sealed abstract trait HList case class :+:[H, T <: HList](head: H, tail: T) extends HList { def :+:[T](v: T) = new :+:(v, this) } case object HNil extends HList { def :+:[T](v: T) = new ...