scala-hamsters / hamsters

A mini Scala utility library
Apache License 2.0
291 stars 23 forks source link

Allow simpler type declaration for HLists #51

Closed loicdescotte closed 6 years ago

loicdescotte commented 6 years ago

val hList : String :: Boolean :: HNil should compile. Currently only val hList : Hcons[String :: HCons[Boolean :: HNil]] is working.