take
2020. 12. 17. 15:40ㆍ모바일/Android_Kotlin
take
take
take() 함수의 인자로 받은 개수만큼만을 인자로 갖는 리스트를 반환
takeLast
take() 함수와 반대로 뒤에서부터 이 함수의 인자로 받은 개수 만크만을 인자로 갖는 리스트를 반환
takeWhile()
첫 번째 인자부터 시작하여 주어진 조건을 만족하는 인자까지를 포함하는 리스트를 반환합니다.
takeLastWhile()
takeWhile() 함수와 반대로 뒤에서부터 뒤에서부터 주어진 조건을 만족하는 인자까지 포함하는 리스트를 반환합니다.
'모바일 > Android_Kotlin' 카테고리의 다른 글
AndroidManifest.xml receiver tag is incompatible with attribute description (attr) reference. (0) | 2021.03.08 |
---|---|
DataBinding – Two-way(양방향) Databinding with Custom View (0) | 2021.03.04 |
[Kotlin] Sequence (0) | 2020.12.17 |
[kotlin] filter, map, all, any, count, find, groupBy, flatMap 함수 정리 (0) | 2020.12.17 |
일급 시민, 일급 객체, 일급 함수 (0) | 2020.12.03 |