Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created June 4, 2018 08:35
Show Gist options
  • Save sajjadyousefnia/4844acbb70ef3884cf6ed059bc1f7dbf to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/4844acbb70ef3884cf6ed059bc1f7dbf to your computer and use it in GitHub Desktop.
val stringList: List<String> = listOf("in", "the", "club")
print(stringList.last()) // will print "club"
print(stringList.last({ s: String -> s.length == 3})) // will print "the"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment