Skip to content

Instantly share code, notes, and snippets.

@yogacp
Last active August 12, 2019 13:05
Show Gist options
  • Save yogacp/0b3249cac929b73ea0a6954c5ade2368 to your computer and use it in GitHub Desktop.
Save yogacp/0b3249cac929b73ea0a6954c5ade2368 to your computer and use it in GitHub Desktop.
Sample of meaningful names
/**
* Sample of Meaningful Names
*/
fun saveData(data: User) {
//...
}
fun deleteData(id: Int) {
//...
}
/**
* Sample of using the Problem Domain
*/
fun isUserLoggedIn(): Boolean {
return (userPassword.isNotEmpty())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment