일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DART
- texttheme
- 웹크롤러
- import
- 코틀린
- 플러터
- Class
- textstyle
- Flutter
- package
- kotlin
- 크롤러
- 다트
- 콜렉션
- variable
- 파이썬
- map
- Collection
- animation
- pushnamed
- crawler
- List
- set
- ML
- Android
- 클래스
- function
- text
- 함수
- python
- Today
- Total
목록Collection (16)
조용한 담장
코틀린(kotlin) 의 시퀀스(sequence) 를 살펴보자. 원문 https://kotlinlang.org/docs/reference/sequences.html 을 보며 정리. kotlin standard library 는 collection 과 함께 또다른 container type 인 sequences (Sequence) 를 가지고 있다. 여러 단계를 포함하는 Iterable 을 수행할 때에는 각 단계의 처리는 바로 끝나고 즉각 그 결과를 리턴한다. sequences 의 여러 단계 처리는 전체 단계가 처리된 결과가 요구됬을 때에 실제 연산이 일어나며 느리게(나중에) 처리된다. (executed lazily) 동작 수행의 순서 또한 다르다. Sequence 은 각각 하나의 element 에 대해 모..
코틀린(kotlin) collection 의 range(범위) and progression(수열) 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/ranges.html 을 보며 정리. 특정 범위의 값(range of values) 을 생성하는 방법에는 kotlin.ranges 패키지에 있는 rangeTo() 함수가 있으며 이 함수의 연산자 인 .. 를 사용한다. operator fun T.rangeTo( that: T ): ClosedRange operator fun Double.rangeTo( that: Double ): ClosedFloatingPointRange operator fun Float.rangeTo( that: Float ): ClosedFlo..
코틀린(kotlin) 의 반복자(iterator) 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/iterators.html 을 보며 정리. iterator 는 Set 과 List 를 포함해 Iterable interface 의 상속자들로 부터 얻을 수 있으며 iterator() 함수 호출로 이 동작이 이루어 진다. 얻은 iterator 는 첫번째 element 를 가리키고 마지막 element 까지 이동할 수 있으며 마지막에 도달하면 다시 사용할 수 없으므로 새로 iterator 를 얻어야 한다. val numbers = listOf("one", "two", "three", "four") val numbersIterator = numbers.iterator(..
코틀린(kotlin) 의 collection (set, list, map) 을 살펴보자. 원문 https://kotlinlang.org/docs/reference/collections-overview.html, https://kotlinlang.org/docs/reference/constructing-collections.html 을 보며 정리. Collection Types 코틀린은 standard library 를 통해 collection type 인 set, list, map 세개를 제공한다. 크게 두개의 인터페이스가 있다. 읽기 전용(read-only) 인터페이스 : collection element 에 접근하기 위한 기능을 제공 변경 가능(mutable) 인터페이스 : collection ele..