Created
February 18, 2020 17:12
-
-
Save happy-bracket/8f545e2780163d1a03929d20af808331 to your computer and use it in GitHub Desktop.
HList in Kotlin, but better!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sealed class HList { | |
object HNil : HList() | |
data class HNode<V, T : HList>(val value: V, val next: T) : HList() | |
data class HPlus<H1 : HList, H2 : HList>(val h1: H1, val h2: H2) : HList() // note this! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment