Skip to content

Instantly share code, notes, and snippets.

@dimsuz
Created May 15, 2017 10:04
Show Gist options
  • Save dimsuz/8651220f4161192efd8341dda3ea8dd2 to your computer and use it in GitHub Desktop.
Save dimsuz/8651220f4161192efd8341dda3ea8dd2 to your computer and use it in GitHub Desktop.
Optional in Kotlin
sealed class Optional<out T> {
data class Just<out T>(val element: T): Optional<T>()
object None: Optional<Nothing>()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment