일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Flutter
- kotlin
- 웹크롤러
- 파이썬
- Class
- map
- 함수
- 크롤러
- DART
- texttheme
- function
- set
- 코틀린
- import
- ML
- 클래스
- textstyle
- crawler
- 다트
- 플러터
- variable
- 콜렉션
- python
- package
- Android
- List
- text
- Collection
- animation
- pushnamed
- Today
- Total
목록Sequence (2)
조용한 담장

github 에도 추가된 mermaid. Include diagrams in your Markdown files with Mermaid | The GitHub Blog Include diagrams in your Markdown files with Mermaid | The GitHub Blog Mermaid is a JavaScript based diagramming and charting tool that takes Markdown-inspired text definitions and creates diagrams dynamically in the browser. github.blog Markdown 에 텍스트만 가지고 다양한 다이어그램을 넣을 수 있다. https://mermaid-js.github...

코틀린(kotlin) 의 시퀀스(sequence) 를 살펴보자. 원문 https://kotlinlang.org/docs/reference/sequences.html 을 보며 정리. kotlin standard library 는 collection 과 함께 또다른 container type 인 sequences (Sequence) 를 가지고 있다. 여러 단계를 포함하는 Iterable 을 수행할 때에는 각 단계의 처리는 바로 끝나고 즉각 그 결과를 리턴한다. sequences 의 여러 단계 처리는 전체 단계가 처리된 결과가 요구됬을 때에 실제 연산이 일어나며 느리게(나중에) 처리된다. (executed lazily) 동작 수행의 순서 또한 다르다. Sequence 은 각각 하나의 element 에 대해 모..