Tagged Questions
7
votes
7answers
4k views
escaping the .each { } iteration early in Ruby
code:
c = 0
items.each { |i|
puts i.to_s
# if c > 9 escape the each iteration early - and do not repeat
c++
}
I want to grab the first 10 items then leave the "each" ...
6
votes
3answers
135 views
Ruby: Manipulate Iterators?
I'm having teething problems with Ruby, with regards to creating single-direction, lazily-evaluated, potentially-infinite iterators. Basically, I'm trying to use Ruby like I'd use Haskell lists and, ...
6
votes
7answers
2k views
How to iterate over two arrays at once?
I have two arrays built while parsing a text file. The first contains the column names, the second contains the values from the current row. I need to iterate over both lists at once to build a map. ...
2
votes
3answers
50 views
What do you exactly mean by HashMap's iterator is fail-fast and HashTable's enumerator isn't?
I was looking up the difference between the two classes and this point came up in a lot of the answers with this blog being the source:
...
1
vote
2answers
122 views
what is the pattern for modifying a collection in C#
What is the pattern (best practice) for such problem -- modifying elements (values) in collection?
Conditions:
size of the collection is not changed (no element is deleted or added)
modification is ...