Last active
June 20, 2017 08:05
-
-
Save robhinds/c62fef290c6d870c6b743b244ad84212 to your computer and use it in GitHub Desktop.
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
implicit def hconsGenerator[H, T <: HList](implicit headGen: Generator[H], tailGen: Generator[T]) = | |
new Generator[H :: T] { | |
override def generate = headGen.generate :: tailGen.generate | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment