Lambdas • Lesson 42/100
Higher-Order Functions
Functions that take functions
📚
Learn💻
Code❓
Quiz🏆
Practice⭐
Complete📚 Lý thuyết
**Higher-Order Function** là function nhận/trả về function khác.
**Cú pháp function type:**
```kotlin
(ParamTypes) -> ReturnType
```
**Ví dụ:**
- (Int, Int) -> Int
- (String) -> Boolean
- () -> Unit