Skip to content

Instantly share code, notes, and snippets.

@deanwampler
Created February 7, 2021 23:24
Show Gist options
  • Save deanwampler/dd0f0d591165c87829ed511c2861baff to your computer and use it in GitHub Desktop.
Save deanwampler/dd0f0d591165c87829ed511c2861baff to your computer and use it in GitHub Desktop.
enum Option[+T]:
case Some(x: T)
case None
enum Option2[+T]:
case Some(x: T) extends Option2[T]
case None extends Option2[Nothing]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment