Kotlin Collection 공식 문서를 정리 한 글입니다. Collection의 retrieve collection parts operator에 대해 알아봅니다.
Github repo 에서 아래에 적힌 Kotlin 코드들을 확인 하실 수 있습니다.
Write operations operator
- mutableCollection의 element를 추가 / 삭제하는데 사용되는 operator
Adding elements
add()
/addAll()
/+
등의 연산자가 활용 됨
1 |
|
Removing elements
remove()
/removeAll()
/-
등의 연산자가 활용 됨retain()
→ operation 함수의 결과 값이 true 인 것만 남기고 나머지 element들은 제거
1 |
|
출처 : https://kotlinlang.org/docs/collection-plus-minus.html