Cool Monday - HList and Shapeless
HList as in heterogenous lists. This means every element is of different type. Yeah sure, just list List in Java, but that is in no way typesafe. I want compiler to know the type of every element and stop me if I try to do something silly.
Linked lists to the rescue
So what’s a linked list anyway? A sequence of nodes with pointers to next. And a nice implementation(still talking Java here) would be generic to allow type-safety for homogeneous lists. It turns out generics are solution for HLists too. Just introduce additional type parameter. Apocalisp has a great post on implementing them in Java. Java requires A LOT of type annotation. It works but it’s just painful and it doesn’t pay off.
Type inference to the rescue
Type inference gets rid of this problem entirely. Let’s implement whole working HList in scala.
|
|
So this list can be instantiated like this
|
|
And it just works. Scala compiler does all the heavy lifting with type annotations. This implementation bare bones and doesn’t provide any useful methods(even random access!). Check out Miles Sabin’s shapeless project for a useful implementation and much more. I provides indexing, map, fold, concatenation, type-safe casts, conversions to tuples(and abstracting over arities!) and back. And even conversions with case classes. Just click the link above and read the readme. It’s awesome.
Last modified on 2012-10-29
Previous Design patterns are bullshit!Next Hunt for a web framework that works