Created
June 4, 2018 08:35
-
-
Save sajjadyousefnia/4844acbb70ef3884cf6ed059bc1f7dbf 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
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