Skip to content

Instantly share code, notes, and snippets.

@luanpotter
Created March 29, 2021 00:14
Show Gist options
  • Save luanpotter/fbf295fb0f479d1032549f7c55f0871b to your computer and use it in GitHub Desktop.
Save luanpotter/fbf295fb0f479d1032549f7c55f0871b to your computer and use it in GitHub Desktop.
// assuming class Animal(val tail: Tail?)
fun process(animal: Animal): Bool {
val tail = animal.tail ?: return false
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment