What is the translation of " ITERATORS " in Korean?

이터레이터를
반복자를
iterators
반복기를

Examples of using Iterators in English and their translations into Korean

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Programming category close
  • Computer category close
For more information, see Iterators.
반복기에 대한 자세한 내용은 반복기를 참조하세요.
Iterators have internal state.
왜나혀면 iterator는 internal state를 가지고 있기 때문입니다.
The previous program uses iterators instead.
리스트 대신에 이 프로그램에서는 이터레이터를 사용하였다.
Iterators and generators can also be used.
Iterators와 generators 또한 사용이 될 수 있습니다.
Generators are a simple and powerful tool for creating iterators.
생성기는 이터레이터를 만들기 위한 간단하고 강력한 도구입니다.
Typed arrays have the same three iterators as regular arrays.
Typed Array에는 일반 Array와 동일한 3 개의 Iterator가 있습니다.
Generators are a simple and powerful tool for creating iterators.
제너레이터(Generators)는 이터레이터(Iterator)를 만드는 간단하고 강력한 도구이다.
Now that you know this, go use iterators and closures without fear!
이제 이것을 알게 되었으니, 반복자와 클로저를 공포없이 사용할 수 있습니다!
Views and iterators instead of lists- some well-known APIs no longer return lists.
Views And Iterators Instead Of Lists 몇몇의 API들이 더 이상 리스트를 리턴하지 않게 됐습니다.
However, having distinct random access iterators offers efficiency advantages.
그러나 random access iterator가 효율적인 장점을 제공한다.
If a pair of iterators was used, you will get a future of futures in a std:: vector: std:: future< std::vector<futureR>>>
한 쌍의 이터레이터를 사용한 경우 ::vector: ::vector>에서 미래의 미래를 얻을 수 있습니다.
Inserting/erasing elements in a set does not invalidate iterators pointing in the set.
Set에서 요소를 삽입하고 제거하는것은 set에서 가리키는 반복자를 무효화하지 않는다.
Have to be able to use iterators so I shall have something to say about STL iterators.
이들을 사용하기 위해서는 내가 STL iterator에 대해 말할 수 있도록 iterator를 쓸 줄 알아야 할 것이다.
The input to an array comprehension does not itself need to be an array; iterators and generators can also be used.
배열 함축 표현식에 대한 입력이 반드시 배열일 필요는 없습니다. iterators와 generators 또한 사용이 될 수 있습니다.
Mastering closures and iterators is an important part of writing idiomatic, fast Rust code, so we will devote this entire chapter to them.
클로저들과 반복자들을 정복하는 것은 자연스러우면서도 빠른 러스트 코드를 작성하는데 중요한 부분 입니다, 그래서 이번 장 전체에서 이것들을 다룹니다.
The elements are stored contiguously, which means that elements can be accessed not only through iterators, but also using offsets to regular pointers to elements.
각 요소는 연속적으로 저장되고, 이는 요소 뿐만이 아니라 반복자를 통해 액세스 될 수 있다는 것을 의미합니다. 또한 요소에 대한 기존 포인터를 오프셋으로 사용할 수 있습니다.
In Listing 3-5 in Chapter 3, we used iterators with for loops to execute some code on each item, although we glossed over what the call to iter did until now.
장의 리스트 3-5 에서, 각 항목에 대해 어떤 코드를 수행하기 위해 for 루프에서 반복자를 사용 했습니다만, 지금까지 iter 에 대한 호출이 무엇을 했는지 대충 넘어 갔었습니다.
For example, performing a search on an associative container such as a map orset can be much slower using iterators than by calling member functions offered by the container itself.
예를 들면 map 또는 set 같은 연관 컨테이너에서 검색을 수행할 때,컨테이너 자신에게서 제공되는 호출 멤버 함수들 대신 반복자를 사용하는 것이 더 느릴 수 있다.
You can create custom iterators in case the default ones don't quite meet your needs by overriding the Variant class's_iter_init,_iter_next, and_iter_get functions in your script.
기본 반복자가 필요에 맞지 않는다면 변수 클래스의 스크립트의 _iter_init, _iter_next, 그리고 _iter_get 함수를 오버라이딩하여 커스텀 반복자를 생성하실 수 있습니다.
The next logical question is which style you should choose inyour own code and why: the original implementation in Listing 13-28 or the version using iterators in Listing 13-29.
다음 논리적 질문은 당신의 코드에서 어떤 스타일을 선택하는 것이 좋은지와 그 이유 입니다:리스트 13-28 의 최초 구현 혹은 리스트 13-29 의 반복자를 사용하는 버전.
While most are easy to understand, iterators and generators require a bit more effort.
대부분은 이해하기 쉽지만, Iterator와 Generator를 이해하기 위해선 조금 더 노력이 필요하다.
Compress(data, selectors) takes two iterators and returns only those elements of data for which the corresponding element of selectors is true, stopping whenever either one is exhausted.
Compress(data, selectors) 는 두 개의 이터레이터를 취하고 selectors 의 해당 요소가 참인 data 의 요소만을 반환하고, 한쪽이 고갈될 때마다 중단합니다.
MXNet has prebuilt, efficient data iterators for common data types like NDArray and CSV.
MXNet에는 NDArray 및 CSV와 같은 공통 데이터 유형에 대해 미리 작성된 효율적인 데이터 반복자를 가지고 있습니다.
The spread syntax internally uses iterators to gather elements, the same way as for… of does.
전개 문법은 내부에서 iterator(반복자)를 사용해 요소를 수집합니다. for… of와 같은 방식으로 말이죠.
For more information about iterators, see the Iterators Overview Topic.
반복기에 대한 자세한 내용은 반복기를 참조하세요. For more information about iterators, see Iterators.
Thanks to my silly experiments like bitwise operators, iterators and generators and a JSON parser in Sass, we are all well aware of what one can do with this preprocessor.
Sass로 쓰인 bitwise operators, iterators and generators, a JSON parser 등 저의 실없는 실험들 덕분에 우리는 이 전처리기를 가지고 어떤 일을 할 수 있는지 잘 알고 있습니다.
Results: 26, Time: 0.0389

How to use "iterators" in an English sentence

Forward iterators don’t support decrement operation.
Unsafe iterators for the Set class.
However, Iterators will not throw ConcurrentModificationException.
Robert Jones implements iterators and alogorithms.
Generator Functions enable writing iterators more easily.
Got your iterators all over the place?
Mixing up generators with iterators considered harmful.
An iterator that strings two iterators together.
GIL's iterators are Random Access Traversal iterators.
The list is iterable using iterators (bidirectional).
Show more

How to use "반복자를, 반복기를" in a Korean sentence

end 마지막 원소를 가리키는 반복자를 리턴한다.
데이터 반복기를 사용할 수는 있겠지만 너무 오버하는 것이 될 수 있습니다.
cend 마지막 원소를 가리키는 상수 반복자를 리턴한다.
iter() 함수는 전달된 데이터의 반복자를 꺼내 반환한다.
Range는 반복자를 대체하는 더 안전하고 유연한 형태로 제안된다.
v-for 파라미터는 반복자를 정의하기 위하여 사용됩니다.
반복자를 나타내는 이 관례적인 표기법은 수학에서 가져왔다.
반복자를 사용할 수 있고 list보다 빠르다.
DataIter 클래스를 확장하여 사용자 정의 데이터 반복기를 만들 수 있습니다.
그 다음, 반복자를 만들어 학습 데이터를 보유합니다.

Top dictionary queries

English - Korean