일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- room
- recyclerview
- 안드로이드
- kotlin
- CoordinatorLayout
- Android
- onLayout
- Algorithm
- Coroutine
- HTTP
- onMeasure
- hilt
- lifecycle
- Navigation
- CollapsingToolbarLayout
- 알림
- View
- DataBinding
- activity
- LiveData
- BOJ
- AppBarLayout
- 코틀린
- Behavior
- 알고리즘
- CustomView
- ViewModel
- 백준
- notification
- sqlite
- Today
- Total
목록collections (2)
개발일지
drop N개의 숫자만큼 앞에서부터 버리고 나머지를 리턴한다. fun main() { val list = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) val drop = list.drop(5) println(list) println(drop) } [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] [6, 7, 8, 9, 10] dropLast N개의 숫자만큼 뒤에서부터 버리고 나머지를 리턴한다. fun main() { val list = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) val drop = list.dropLast(5) println(list) println(drop) } [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] [1, 2, ..
any() Collection에 하나라도 있으면 true => 만족하는 하나를 찾을때까지 검사한다. fun main() { val list0 = listOf() println(list0.any()) val list1 = listOf(1, 2, 3) println(list1.any()) val list2 = listOf(1, 2, 3, 1, 2, 3) list2.any { println(it) it == 3 } } false true 1 2 3 all() 모든 원소가 일치하면 true => 전부다 검사하거나, 중간에 일치하지 않는 원소가 있으면 끝난다. fun main() { val list0 = listOf() println(list0.all { it > 0 }) val list1 = listOf(1, ..