enumerator

(redirected from Iterator)
Also found in: Dictionary, Encyclopedia, Wikipedia.
Graphic Thesaurus  🔍
Display ON
Animation ON
Legend
Synonym
Antonym
Related
  • noun

Synonyms for enumerator

someone who collects census data by visiting individual homes

Synonyms

Related Words

Based on WordNet 3.0, Farlex clipart collection. © 2003-2012 Princeton University, Farlex Inc.
References in periodicals archive ?
Once a new perspective projection error has been obtained in each iterator, a validation needs to be performed.
We will also need an iterator variable k to refer to the "stage" of the algorithm; see Figure 2.
Atualmente, o grupo e composto por Ayla Gresta; Bia Medeiros; Diego Azambuja; Joao Stoppa; Maria Eugenia Matricardi; Mariana Brites; Mateus de Carvalho Costa; Natasha de Albuquerque; Romulo Barros, mas tambem daqueles que o proprio grupo chama de 'corpos expandidos' os "sempre queridos iteratores; exCorpos Informaticos ou simplesmente admiradores: Bianca Tinoco; Kamala Hamers; Marcio H.
Even when an iterator makes it feasible in theory to check the KSK condition for every permutation of an edge sequence, it may still take a prohibitively long time.
List of variants Variant Code sample C pointer * iptr = setVal; C array[i] bigGlobalCarray[i] = setVal; C array[x[i]] bigGlobalCarray[indices[i]] = setVal; C++ pointer * iptr = setVal; C++ array[i] bigGlobalCarray[i] = setVal; C++ array[x[i]] bigGlobalCarray[indices[i]] = setVal; C++ vector std::fill std::fill (bigGlobalVector.begin(), bigGlobalVector.end(), setVal); C++ vector iterator * it = setVal; C++ vector[i] bigGlobalVector[i] = setVal; C++ vector.at(i) bigGlobalVector.at(i) = setVal; C++ vector[x[i]] bigGlobalVector[indices[i]] = setVal; C++ vector.at(x[i]) bigGlobalVector.at(indices[i]) = setVal; The language dialects used were C99 and C++11 as selected by the GCC command-line options-std=c99 and -std=c++0x.
JDOM takes advantage of Java features such as: creating methods with the same name, reflection (9), weak references (10), and the use of collections such as List and Iterator [14].
The five kinds of services are modifier, selector, iterator, constructor, and destructor.
This algorithm relies on an iterator which performs depth-first, iterative-deepening search [4] of the search tree, referred to in this algorithm as graphs.
lists.groovy # List operations list = ["ian", "brian", "brain"] println list; println "Maximum value: ${list.max()}" # inject is like an iterator with carryover of last value list.inject ("foo", { val, elem|println "${val} -- ${elem}"; return elem }) # findAll returns all the elements for which the closure returns true.
An iterator type is a light-weight type (typically one or two pointers and possibly some bookkeeping information) and associated with a linear container class, for example, linear list, stack, queue, array, or search tree.
Consider the map iterator on lists, which applies a given function to every element of a list.