Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

95
votes
10answers
73k views

What is the best way to iterate over a Dictionary in C#?

I've seen a few different ways to iterate over a Dictionary in C#. Is there a standard way?
35
votes
7answers
40k views

How to iterate over a JSON structure?

I have the following JSON structure: [ {"id":"10", "class": "child-of-9"}, {"id":"11", "classd": "child-of-10"}]; how to iterate over it using jquery or javascript?
22
votes
8answers
30k views

What is the “right” way to iterate through an array in Ruby?

PHP, for all its warts, is pretty good on this count. There's no difference between an array and a hash (maybe I'm naive, but this seems obviously right to me), and to iterate through either you just ...
21
votes
2answers
1k views

Why do you have to call .iteritems() when iterating over a dictionary in python?

Why do you have to call iteritems() to iterate over key, value pairs in a dictionary? ie dic = {'one':'1', 'two':'2'} for k, v in dic.iteritems(): print k, v Why isn't that the default ...
11
votes
6answers
26k views

C# Iterate Over DataGridView & Change Row Color

I have a datagridview made up of multiple rows and columns. I want to iterate through each row and check the contents of a specific column. If that column contains the word "NO", I want to change the ...
9
votes
6answers
3k views

How to remove elements from a generic list while iterating over it?

I am looking for a better 'pattern' for working with a list of elements which each need processed and then depending on the outcome are removed from the list. You can't use .Remove(element) inside a ...
9
votes
6answers
10k views

How do I iterate through each element in an n-dimensional matrix in MATLAB?

I have a problem. I need to iterate through every element in an n-dimensional matrix in MATLAB. The problem is, I don't know how to do this for an arbitrary number of dimensions. I know I can say for ...
7
votes
7answers
12k views

Java Iterate Bits in Byte Array

How can i iterate bits in a byte array?
6
votes
1answer
63 views

Iterate over 2d array in an expanding circular spiral

Given an n by n matrix M, at row i and column j, I'd like to iterate over all the neighboring values in a circular spiral. The point of doing this is to test some function, f, which depends on M, to ...
6
votes
3answers
232 views

scala: accumulate a var from collection in a functional manner (that is, no vars)

this is a newbie question I have the following code: var total = 0L docs.foreach(total += _.length) in docs I have a collection of objects with the .length property I'd like something like: val ...
6
votes
4answers
468 views

Iterating circular way

I need iterate through a List but circular way. I need too add new elements to the list and iterate over all elements (olds and news elements), How I do it? Is there any data structure for them?
6
votes
6answers
464 views

Removing Item From List - during iteration - what's wrong with this idiom?

As an experiment, I did this: letters=['a','b','c','d','e','f','g','h','i','j','k','l'] for i in letters: letters.remove(i) print letters The last print shows that not all items were removed ? ...
6
votes
6answers
3k views

Clojure: Call a function for each element in a vector with it index

Say I have a vector: (def data ["Hello" "World" "Test" "This"]) And I want to populate a table somewhere that has an api: (defn setCell [row col value] (some code here)) Then what is the ...
5
votes
5answers
147 views

Python: Replace ith occurence of x with ith element in list

Suppose we have a string a = "01000111000011" with n=5 "1"s. The ith "1", I would like to replace with the ith character in "ORANGE". My result should look like: b = "0O000RAN0000GE" What could be ...
5
votes
2answers
1k views

JSF — <ui:repeat /> over a java.util.Set?

Does the <ui:repeat /> tag support iterating over a java.util.Set? I've tried iterating over my JPA domain entity objects contained in a Set, but receive errors. Is there something I'm ...
5
votes
4answers
708 views

How to iterate initialized enumerated types with Delphi 6 and avoid the “out of bounds” error?

I am using Delphi 6 Professional. I am interfacing with a DLL libraty that declares an enumberated type as follows: TExtDllEnum = (ENUM1 = $0, ENUM2 = $1, ENUM3 = $2, ENUM4 = $4, ENUM5 = $8, ENUM6 = ...
5
votes
1answer
353 views

Is it safe to delete an object property while iterating over them?

When iterating over an object's properties, is it safe to delete them while in a for-in loop? For example: for (var key in obj) { if (!obj.hasOwnProperty(key)) continue; if ...
5
votes
7answers
647 views

How can I randomly iterate through a large Range?

I would like to randomly iterate through a range. Each value will be visited only once and all values will eventually be visited. For example: class Array def shuffle ret = dup j ...
4
votes
2answers
89 views

How to simplify split, iterate.each and join in ruby? — Ruby beginner

words = self.tag.split words.each { |word| word = word.stem } self.tag = words.join(' ') For a given sentence I want to perform the stem action on each individual word. Is there a way to simplify ...
4
votes
1answer
91 views

Clojure Library Recursion Without loop … recur

I have a question about iterate and Clojure library funcs implemented similarly to iterate. (defn iterate 2 "Returns a lazy sequence of x, (f x), (f (f x)) etc. f must be free of side-effects" 3 ...
4
votes
1answer
100 views

Counter inside iterate smarty loop

I have this smarty code : {iterate from=fruits item=fruit} .... {/iterate} I want to have a counter inside this loop that accept a start value and increase by one until the loop continues. I ...
4
votes
2answers
235 views

guava: Best way to iterate over the key->collection entries of a Multimap?

I'm looking for the corresponding way, for Multimap, to iterate over entries of a Map, namely: Map<K,V> map = ...; for (Map.Entry<K,V> entry : map.entrySet()) { K k = entry.getKey(); ...
4
votes
2answers
346 views

Python: Is it possible to make a class iterable using the standard syntax?

I have inherited a project with many large classes constituent of nothing but class objects (integers, strings, etc). I'd like to be able to check if an attribute is present without needed to define a ...
4
votes
1answer
155 views

Iterate member variables

Is there a way to iterate the member variables of an object in D2010 without knowing what they are beforehand?
4
votes
5answers
384 views

Iterating generic array of any type in Java

If there is an instance of Java Collection which may carry primitive type, generic array, and/or iterable collection, I want to treat the generic array as Iterable collection, but how? e.g. the ...
4
votes
4answers
1k views

Remove elements as you traverse a list in Python

In Java I can do by using an Iterator and then using the .remove() method of the iterator to remove the last element returned by the iterator, like this: import java.util.*; public class ...
4
votes
3answers
1k views

iterating over unknown XML structure with PHP (DOM)

Hi all I want to write a function that parses a (theoretically) unknown XML data structure into an equivalent PHP array. Here is my sample XML: <?xml version="1.0" encoding="UTF-8"?> ...
4
votes
7answers
650 views

Why can't I push this object onto my std::list?

Just started programming in C++. I've created a Point class, a std::list and an iterator like so: class Point { public: int x, y; Point(int x1, int y1) { x = x1; y = y1; ...
4
votes
6answers
7k views

C# enums as function parameters?

Can you pass a standard c# enum as a parameter? For example: enum e1 { //... } enum e2 { //... } public void test() { myFunc( e1 ); myFunc( e2 ); } public void myFunc( Enum e ) { ...
4
votes
7answers
3k views

C#, For Loops, and speed test… Exact same loop faster second time around?

public Int64 ReturnDifferenceA() { User[] arrayList; Int64 firstTicks; IList<User> userList; Int64 secondTicks; System.Diagnostics.Stopwatch watch; userList = Enumerable ...
3
votes
3answers
44 views

How to use iteration to insert HTML

I have the following ugly hard code: <div class="label"> <p id="CO-0"></p> <p id="CO-1"></p> <p id="CO-2"></p> <p id="CO-3"></p> ...
3
votes
2answers
235 views

Haskell: iterate in State, how to force the behaviour I want?

This is my first posting on SO, and I'm relatively new to Haskell, so please excuse any missteps or if my code is not idiomatic! Consider the following two intuitive descriptions of: a, f(a), ...
3
votes
1answer
41 views

Foreach changes not being preserved on Linq item collection

In the following example, changes applied in the foreach are not preserved when I return the collection: var people = SomeLinqToSqlSource(); foreach (var person in people) { person.Name = ...
3
votes
6answers
293 views

Haskell iterate over a list

I know you suppose to think differently in Haskell, but can someone give me a quick answer on how to iterate over a list or nested list and print out a character based on the value of the list ...
3
votes
1answer
132 views

Iterating over a List on JSP page does not work

I've been struggling to find the problem in my code and I just don't see it. In my servlet, I create a list of countries and set it into my request: List<Country> countryList = (new ...
3
votes
2answers
2k views

Python: Printing a list without the brackets and single quotes?

I have a list full of IP addresses. I would like to iterate through the list and print each IP address. When I try doing this: def printList(theList): for item in theList: print item ...
3
votes
4answers
189 views

Bad practice with the ternary operator [closed]

While writing some PHP, I needed to iterate over a function call that could also return null, so I used the following construct: foreach (($object->method() ? : array()) as $thing) { // Insert ...
3
votes
3answers
1k views

Creating a loop in ruby on rails view

I have a variable "x" in my view. I need to display some code "x" number of times. I basically want to set up a loop like this: for i = 1 to x do something on (i) end Is there a way to do this? ...
3
votes
2answers
245 views

Iterating over libraries and execute task in Ant

I need to be able to execute a task for all sub-directories with a certain name in Ant. For each sub-dir, I need to do an exec task How can I do this ? Examples I found use fileset for copy tasks, ...
3
votes
4answers
226 views

Best way to iterate over multiple arrays?

What's is the best (beauty and efficient in terms of performance) way to iterate over multiple arrays in Ruby? Let's say we have an arrays: a=[x,y,z] b=['a','b','c'] and I want this: x a y b z c ...
3
votes
1answer
567 views

Lisp: multidimensional array elementwise operations

What is the "correct" construct in Common Lisp to apply elementwise operations to multidimensional arrays? The following examples should help illustrate what I'm trying to do: A) Suppose I want to ...
3
votes
4answers
314 views

Scala - Catching an exception within a map

What is the best way of handling exceptions while iterating over a loop in Scala? For instance, if I had a convert() method that could throw an exception, I'd like to catch that exception, log it, ...
3
votes
2answers
433 views

How would you (re)implement iterate in Haskell?

iterate :: (a -> a) -> a -> [a] (As you probably know) iterate is a function that takes a function and starting value. Then it applies the function to the starting value, then it applies ...
3
votes
2answers
872 views

C# - Iterating over and invoking class members

I'm trying to iterate over the members of a static class and invoke all of the members that are fields. I get a MissingFieldException on the line where I attempt to invoke the member. Something like ...
3
votes
4answers
249 views

Iterating over an array [closed]

Possible Duplicate: automatically get loop index in foreach loop in perl I'd like to iterate over an array, but I need to keep track of the index. This code doesn't list the indexes as I'd ...
3
votes
5answers
261 views

How can I iterate over only the first variable of a tuple

In python, when you have a list of tuples, you can iterate over them. For example when you have 3d points then: for x,y,z in points: pass # do something with x y or z What if you only want ...
3
votes
3answers
232 views

jquery iterating through newly created elements

I am trying to add new rows in my table, and save them into DB. First, I use .append() to append rows on the table: $("#tablename").append("<tr id='newRow'><td>newly added ...
3
votes
2answers
91 views

efficiently list items in tuples starting at end

I'd like to list the items in a tuple in Python starting with the back and go to front. Similar to: foo_t = tuple(int(f) for f in foo) print foo, foo_t[len(foo_t)-1] ... I believe this should be ...
3
votes
2answers
7k views

Jquery Iterate Through All Checked Boxes and Remove Class

I'm currently using jQuery and would like some help on iterating through all "checked" checkboxes and remove a class (called "new_message") of the parent table row. I've got a basic concept, but I ...
2
votes
4answers
67 views

VBA - how to conditionally skip a for loop iteration

I have a for loop over an array. What I want to do is test for a certain condition in the loop and skip to the next iteration if true: For i = LBound(Schedule, 1) To UBound(Schedule, 1) If ...

1 2 3 4 5 6