일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 플러터
- set
- pushnamed
- 코틀린
- 콜렉션
- textstyle
- crawler
- import
- 다트
- Collection
- python
- 함수
- 크롤러
- DART
- 웹크롤러
- package
- List
- kotlin
- 파이썬
- texttheme
- Flutter
- ML
- Class
- variable
- Android
- map
- 클래스
- function
- text
- animation
- 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 에 대해 모..