Skip to content

Instantly share code, notes, and snippets.

@robhinds
Last active June 20, 2017 08:05
Show Gist options
  • Save robhinds/c62fef290c6d870c6b743b244ad84212 to your computer and use it in GitHub Desktop.
Save robhinds/c62fef290c6d870c6b743b244ad84212 to your computer and use it in GitHub Desktop.
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