Skip to content

Instantly share code, notes, and snippets.

@shkschneider
Last active March 12, 2019 16:33
Show Gist options
  • Save shkschneider/87c6be0b34262186c2449ccf66a66ca2 to your computer and use it in GitHub Desktop.
Save shkschneider/87c6be0b34262186c2449ccf66a66ca2 to your computer and use it in GitHub Desktop.
fun alwaysReturnsNull(position: Int): String? {
if ((position % 10) == 0) {
when (position) {
10 -> "one"
20, 30 -> "two"
else -> "three"
}
}
return null
}
fun returnsNullableString(position: Int): String? {
if ((position % 10) == 0) {
return when (position) {
10 -> "one"
20, 30 -> "two"
else -> "three"
}
}
return null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment