Answers for "kotlin scope functions"

4

kotlin scope functions

| Function | Object reference | Return value   | Is extension function                        |
|----------|------------------|----------------|----------------------------------------------|
| let      | it               | Lambda result  | Yes                                          |
| run      | this             | Lambda result  | Yes                                          |
| run      | -                | Lambda result  | No: called without the context object        |
| with     | this             | Lambda result  | No: takes the context object as an argument. |
| apply    | this             | Context object | Yes                                          |
| also     | it               | Context object | Yes                                          |
Posted by: Guest on January-04-2021
1

kotlin scope functions

| object  lambda
-----+----------------
this | apply    run
it   | also     let
Posted by: Guest on January-31-2021

Browse Popular Code Answers by Language