Skip to content

Instantly share code, notes, and snippets.

@abohomol
Created October 25, 2018 11:53
Show Gist options
  • Save abohomol/b9b8c6aee84d6099bddc718aea819dab to your computer and use it in GitHub Desktop.
Save abohomol/b9b8c6aee84d6099bddc718aea819dab to your computer and use it in GitHub Desktop.
/* Method declared in StringExtensions.kt: */
public inline fun String.capitalize(): String {
...
}
/* Will be translated into the following call in Java: */
String lowercase = ...
String capitalized = StringExtensionsKt.capitalize(lowercase)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment