The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
56 views

Shared constraint for items of an HList

Suppose we have a following definition of HList: data HL spec where HLNil :: HL () HLCons :: h -> HL t -> HL (h, t) Is it possible to somehow enforce a shared constraint on its items? As ...
4
votes
2answers
145 views

Mapping over a heterogenous data structure with a generic function

I'm working on an HList implementation and I'm stuck trying to implement a map function for it. I've tried a lot of different approaches but with each one I reach compiler errors related to that ...
4
votes
2answers
133 views

Haskell: Show all the elements that are “showable” on a Hlist

I have tried map show . mapMaybe fromDynamic $ [toDyn "one", toDyn (\x -> x::Integer), toDyn 3, toDyn ()] but it returned ["()"]
7
votes
2answers
430 views

Creating an HList of all pairs from two HLists

I'm using shapeless in Scala, and I'd like to write a function allPairs that will take two HLists and return an HList of all pairs of elements. For example: import shapeless._ val list1 = 1 :: "one" ...
2
votes
1answer
93 views

Map on HList in method with Poly1 based on type parameter of class

I have class, parameterized with HList and some other type. How can I use map on HList in one of its methods? Compilation of this code throws java.lang.AssertionError: class Test[L <: HList, ...
0
votes
1answer
104 views

How do I remove the dotted line of the selection in a Tk::HList?

when an entry in a Tk::HList is selected by a single click, a dotted line is drawn around this entry. I don't want to have this line. How can I configure it? I don't see any documented way to do it. ...
2
votes
2answers
150 views

Are HList/KList suitable as method parameter? How to refer to? Type List?

I discovered HList / KList, they are pretty cool. I have an actual use case, in which heterogenously typed and variable length containers with conserved type information would be very useful (for more ...
2
votes
1answer
132 views

Template Haskell compile error

Consider the following code: {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE NoMonomorphismRestriction #-} import Data.HList.GhcSyntax((.!.),(.=.),(.*.)) import Data.HList.Record(emptyRecord) import ...
6
votes
1answer
137 views

Is it possible to remove OverlappingInstances for this DataKinds-backed heterogeneous list implementation?

With recent posts about HaskellDB, I've been motivated to look into HList again. As we now have -XDataKinds in GHC, which actually has an example of heterogeneous lists, I wanted to investigate how ...
6
votes
1answer
234 views

Haskell: HList and optional parameters

I've been trying to use HList to create records. I've been using the operators defined in HList-GHCSyntax. It so far works quite nicely, allowing me to write things like this: myRecord = (param1 ...
48
votes
3answers
2k views

Are HLists nothing more than a convoluted way of writing tuples?

I hope the provocative title caught your attention :-) Despite the first impression that this may leave, I am really interested in finding out where the differences are, and more generally, to ...
0
votes
1answer
90 views

Perl HList: Change -background for individual items

I'm trying to alert the user that some data has been changed and needs to be saved. The data is displayed in Perl's Tk::HList box. I was hoping I could do: if ($new_item) { ...
0
votes
1answer
96 views

Automatic HEq instances for members of an HList

I'm experimenting with HList based typed heterogeneous lists. I have defined the following: import Data.HList data ATag data BTag type TagList = ATag :*: BTag :*: HNil bIndex :: Int bIndex = ...
14
votes
3answers
910 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 ...
5
votes
3answers
395 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 ...
17
votes
2answers
812 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 ...
4
votes
1answer
366 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
381 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 ...