Created
February 7, 2021 23:24
-
-
Save deanwampler/dd0f0d591165c87829ed511c2861baff 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
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