The enumerators tag has no wiki summary.
0
votes
1answer
37 views
c++ enumerator display read from structures?
so i have this enumerator that you read from a structure it says enum {PASSING, FAILING}
it's meant to display failing or passing .. it does that however i get (status Failing0)(status PASSING1) as a ...
7
votes
4answers
129 views
Chaining enumerators that yield multiple arguments
I'm trying to figure out how Ruby handles chaining enumerators that yield multiple arguments. Take a look at this snippet:
a = ['a', 'b', 'c']
a.each_with_index.select{|pr| p pr}
# prints:
# ["a", ...
1
vote
1answer
60 views
Interleave Enumerators play 2.0
Trying to get my head around Enumerators on play 2.0.4 - I'd like to interleave one Enumerator with another, but only as long as length of the first enumerator (exclusive).
So:
Enumerator("hello", ...
1
vote
2answers
53 views
Graceful way of stopping at the end of an enumerator?
Is there a graceful way of realizing one is at the end of an enumerator?
For instance,
a = (1..10).to_a
e = a.each
e.next # should yield 1
while e.next
# do something
end
Of course, e raises ...
2
votes
8answers
118 views
Passing enumerated values to functions
Say I have a function that takes an integer as an argument. I'd like to be able to use an enumerated list as a way to keep the integer values organized.
For example, I'd ideally like to be able to ...
20
votes
2answers
998 views
What are the pros and cons of Enumerators vs. Conduits vs. Pipes?
I'd like to hear from someone with a deeper understanding than myself what the fundamental differences are between Enumerators, Conduits, and Pipes as well as the key benefits and drawbacks. Some ...
0
votes
1answer
2k views
Cannot implicitly convert type are you missing a cast? Arrays, Enumerators and Web services
I am trying to send a soap message to an external system, this system already has predefined data types which I must integrate in my code, using arrays and enumerators.
My problem is the enumerator ...
3
votes
1answer
239 views
How does ASP Classic FOR EACH loop work
I would like to now how the ASP Classic/VB6 FOR EACH loop works. I know with .NET IEnumberable/IEnumerator are involved, but how does VB6/ASP Classic do it?
Thanks!
3
votes
4answers
372 views
Does foreach use IEnumerator/IEnumerable for built-in types?
Does the foreach loop use interfaces IEnumerator and IEnumerable only for iterating the objects of custom types (classes) or also for iterating the built-in types (behind the scenes)?
2
votes
2answers
1k views
What are C# Iterators and Generators, and how could I utilize them
I am a VB.Net developer, kind of newbie in C#,
While looking in C# documentation I came through Iterators and Generators, could not fully understand the use, I there anyone who can explain (in vb ...
10
votes
3answers
2k views
F# yield! operator - Implementation and possible C# equivalents
I'm currently learning F# and I really love the yield! (yield-bang) operator. Not only for its name but also for what it does of course.
The yield! operator basically allows you to yield all elements ...
1
vote
2answers
154 views
Does changing a item field in a Collection while iterating invalidates the collection?
If do:
foreach(var a in col) {
a.X = 1;
}
Will my iterator over the collection become invalid?
Thanks
4
votes
6answers
690 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 (here, here). My question is not how (which is trivial for most cases), but why no such type exists in the .NET ...
5
votes
4answers
4k 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 I am curious how they work. Here is some code:
class Bunk
def initialize
@h = [*1..100]
end
def each
if ...
3
votes
7answers
1k 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 threw an exception ...
12
votes
1answer
3k 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
void Page_Load()
{
...