-
Notifications
You must be signed in to change notification settings - Fork 4
/
topics.todo
68 lines (61 loc) · 1.26 KB
/
topics.todo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Programming in Kotlin
Venkat Subramaniam
@venkat_s
Access:
URL: https://github.com/venkats/devoxxpl2019
Part 0: What's Kotlin?:
✓Styles of programming
✓Running as a script
✓Compiling
✓lab
Part 1: Writing Functions:
✓Defining variables
✓Prefer val or var
✓Writing functions
✓Single Expression Functions
✓Multiline functions
✓passing parameters
✓nullable types
✓safe navigation and Elvis operator
✓when expression and statement
✓lab
Part 2: OO Programming:
✓Creating a class
✓Defining a constructor
✓val, var, vs. private field
✓Creating a method
✓Defining properties
✓getters
✓setters
✓private setters
✓Companion objects
✓"static" methods
✓operator overloading
✓inheritance
✓delegation
✓lab
Part 3: Functional Programming:
✓higher order functions
✓lambda expressions
✓structure of a lambda
-filter, map, reduce
-eager vs. lazy evaluation
-sequences
-lab
Part 4: Creating DSLs:
-Domain Specific Languages
-Fluency in Kotlin
-; is optional
-. and () are optional with infix
-extension functions
-lambda as last parameter
-implicit receivers
-2 days ago
-lab
Part 5: Coroutines:
-parallel vs. concurrent
-Running a sequential task
-Running concurrently
-Running in parallel
-applying coroutines