Created
January 18, 2021 09:28
-
-
Save rahat14/b13001a94934fdd98d0ebe957ed45c43 to your computer and use it in GitHub Desktop.
Kotlin Chain
This file contains 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
student?.run { | |
firstName == "John" && | |
lastName == "Doe" && | |
age == 40 && | |
homeAddress == "Dhaka,Bangladesh" && | |
cellPhone.orEmpty().startsWith("+880") | |
} ?: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment