"Iterator" is not found on TREX in Korean-English direction
Try Searching In English-Korean (Iterator)

Low quality sentence examples

The Iterator Pattern Iterator 는 디자인 패턴에서 가장 간단하고 가장 빈번하게 사용되는 패턴들 중의 하나이다.
The Iterator pattern is one of the most simple design patterns.
대부분은 이해하기 쉽지만, Iterator와 Generator를 이해하기 위해선 조금 더 노력이 필요하다.
While most are easy to understand, iterators and generators require a bit more effort.
and changing the values of two variables in the iterator section.
invoking a method in both the initializer and the iterator sections, and changing the values of two variables in the iterator section.
Lt;iterator> 컨테이너 반복자.
Lt;vector> std:: vector 컨테이너.
먼저 iterator 를 상기시켜 봅시다.
Let's write the Vector's iterator first.
Lt;iterator> 헤더에 정의되어 있음.
편집 Iterator primitives.
이 경우 iterator()가 도움이 될 수 있습니다.
In this case, iterator() may help.
그러나 random access iterator가 효율적인 장점을 제공한다.
However, having distinct random access iterators offers efficiency advantages.
첫번째 원소로의 역방향 반복자(reverse iterator)를 반환한다.
Returns a reverse iterator to the beginning.
첫번째 원소로의 역방향 반복자(reverse iterator)를 반환한다.
Returns reverse iterator for the first element of reverse iteration 2.
왜나혀면 iterator는 internal state를 가지고 있기 때문입니다.
Iterators have internal state.
Alert( [… range] ); // Symbol. iterator가 없기 때문에 에러 발생.
Alert([… range]);// Error, no Symbol. iterator.
Python에서 iterator라는 것은 __iter__()와 __next__() method를 가진 객체를 말한다.
An iterator, in Python, is an object which implements__iter__ and__next__ method.
Iterable한 객체를 iterator 로 변환하고 싶다면, iter() 라는 built-in function 을 사용.
To intentionally create an iterator, call the built-in lter function.
반복자 Iterator가 제공하는 기능은?
What does an Iterator give you?
반드시 IteratorAggregate 또는 Iterator 를 사용해야 합니다.
Either IteratorAggregate or Iterator must be used instead.
반드시 IteratorAggregate 또는 Iterator 를 사용해야 합니다.
Instead it must be implemented by either IteratorAggregate or Iterator.
Iterator 와 ListIterator의 차이점은 무엇인가?
What is difference between Iterator and ListIterator?
Generator()를 호출하면 그 함수가 바로 실행되는 것이 아니라 generator-iterator 객체를 반환한다.
When a generator function is called, the body of the function does not execute straight away; instead, it returns a generator-iterator object.
Generator()를 호출하면 그 함수가 바로 실행되는 것이 아니라 generator-iterator 객체를 반환한다.
When a generator function is called, the body of the function does not execute straight away;