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
ββββββββββββ¦ββββββββββββββββββ¦ββββββββββββββββ¦ββββββββββββββββ | |
β Function β Receiver (this) β Argument (it) β Result β | |
β βββββββββββ¬ββββββββββββββββββ¬ββββββββββββββββ¬ββββββββββββββββ£ | |
β let β this@MyClass β String("...") β Int(42) β | |
β run β String("...") β N\A β Int(42) β | |
β run* β this@MyClass β N\A β Int(42) β | |
β with* β String("...") β N\A β Int(42) β | |
β apply β String("...") β N\A β String("...") β | |
β also β this@MyClass β String("...") β String("...") β | |
ββββββββββββ©ββββββββββββββββββ©ββββββββββββββββ©ββββββββββββββββ |
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
interface LoginContracts { | |
interface View { | |
fun showError(message: String) | |
} | |
interface Presenter { | |
fun onDestroy() | |
fun onLoginButtonPressed(username: String, password: String) | |
} | |