Created
March 11, 2018 13:57
-
-
Save ruwanka/c07123f5b1b47bbb11414e640b2f150e to your computer and use it in GitHub Desktop.
One line function, default parameters, named parameters
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
fun String.toSentenceCase(): String = this.substring(0, 1).toUpperCase().plus(this.substring(1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment