iterable과 iterator 개념

2019. 9. 6. 09:56기타

728x90

참고자료1. https://mollangk.tistory.com/28 

 

[javascript ES6] iterable 과 iterator

Iteration 개념 es6 의 for ..of 등의 반복을 위해서는 Iteration 개념을 알아둘 필요가 있습니다. 단어 그대로 보자면. Iteration : 반복의 뜻을 가지고 있습니다. es6에선 2가지의 프로토콜(규칙) 있습니다. 반..

mollangk.tistory.com

참고자료2. https://itholic.github.io/python-iterable-iterator/

 

[python] iterable? iterator?

iterable? iterator?

itholic.github.io

 

대충 요약하면, for문이나 next같은 걸로 순차적으로 내용물에 접근할 수 있다면 iterable이다.

별도의 메소드를 통하여 순차적으로 내용물에 접근 가능하게 변할 수 있다면 iterator이다.

728x90
반응형

'기타' 카테고리의 다른 글

Git Bash 계정 변경  (0) 2019.10.10
GitHub gitignore 파일 만들기  (0) 2019.09.23
머신러닝 결정트리 모델  (0) 2019.08.05
아두이노 uno board 구조  (0) 2019.08.05
머신러닝 파이썬 응용프로그램 만들기 .py  (0) 2019.07.29