1
vote
5answers
142 views
Why doesn’t .NET have a bidirectional enumerator?
It's been asked a couple of times on SO how you can implement a bidirectional enumerator (http://stackoverflow.com/questions/191788/two-directional-list-enumerator-in-net, http://s …
2
votes
3answers
158 views
How do Enumerators work in Ruby 1.9.1?
This question is not about how to use Enumerators in Ruby 1.9.1 but rather im curious how they work. Here is some code:
class Bunk
def initialize
@h = [*1..100]
en …
3
votes
7answers
350 views
Why does enumerating through a collection throw an exception but looping through its items does not
I was testing out some synchronization constructs and I noticed something that confused me. When I was enumerating through a collection while writing to it at the same time, it th …
3
votes
1answer
438 views
Concurrency or Performance Benefits of yield return over returning a list
I was wondering if there is any concurrency (now or future), or performance benefit to using yield return over returning a list. See the following examples
Processing Method
voi …
