3
votes
1answer
89 views
Looking for a faster implementation for IEnumerable/IEnumerator
I'm trying to optimize a concurrent collection that tries to minimize lock contention for reads. First pass was using a linked list, which allowed me to only lock on writes while m …
2
votes
1answer
29 views
C# 2.0 - Is there any way to do a `GroupBy` with a yielded itterator block?
I'm working with a C# 2.0 app so linq/lambda answers will be no help here.
Basically I'm faced with a situation where i need to yield return an object but only if one if it's prop …
2
votes
3answers
122 views
How can I traverse a file system with a generator?
I'm trying to create a utility class for traversing all the files in a directory, including those within subdirectories and sub-subdirectories. I tried to use a generator because g …
2
votes
4answers
326 views
Does Scala have an equivalent to C# yield?
I'm new to Scala, and from what I understand yield in Scala is not like yield in C#, it is more like select.
Does Scala have something similar to C#'s yield? C#'s yield is great b …
1
vote
1answer
111 views
What is the difference (if any) between “yield” and “yield return” in C#?
I've traditionally used yield in C# without the return, e.g.:
IEnumerable<T> Foobar() {
foreach( var foo in _stuff ) {
yield foo;
}
}
But in other examples I'v …
1
vote
3answers
145 views
Iterating over nested lists with a Next() function, without a generator.
Whilst I'd love to solve this problem in python, I'm stuck in Delphi for this one. I have nested lists (actually objects with nested lists as properties, but nevermind), and I want …
0
votes
2answers
84 views
return column values as IEnumerable
I have this code working:
public IEnumerable<string> GetEmpNames()
{
var cmd = SqlCommand("select [EmpName] from [dbo].[Emp]");
using (var rdr = cmd.ExecuteReader()) …
4
votes
3answers
216 views
yield return versus return select
Which are the advantages/drawbacks of both approaches?
return items.Select(item => DoSomething(item));
versus
foreach(var item in items)
{
yield return DoSomething(item) …
5
votes
6answers
441 views
What is yield return in C#? [closed]
Possible Duplicate:
What is the yield keyword used for in C#?
I've recently noticed the "yield" keyword and it caught my attention. English is not my primary language so t …
2
votes
2answers
37 views
Caching IEnumerable
public IEnumerable<ModuleData> ListModules()
{
foreach (XElement m in Source.Descendants("Module"))
{
yield return new ModuleData(m.Element("ModuleID").Value) …
3
votes
3answers
131 views
yield break; - crazy behaviour
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace ConsoleApplication4
{
class Program
{
static void Main (stri …
45
votes
9answers
9k views
can somebody explain me the python yield statement?
In plain english, please...
I'm trying to understand this code:
def node._get_child_candidates(self, distance, min_dist, max_dist):
if self._leftchild and distance - max_dist …
6
votes
4answers
347 views
Is yield return in C# thread-safe?
I have the following piece of code:
private Dictionary<object, object> items = new Dictionary<object, object>;
public IEnumerable<object> Keys
{
get
{
…
11
votes
4answers
353 views
In C#, why can’t an anonymous method contain a yield statement?
I thought it would be nice to do something like this (with the lambda doing a yield return):
public IList<T> Find<T>(Expression<Func<T, bool>> expression) …
0
votes
2answers
43 views
Is it necessary to refer to self in: yield(self[i])
In this example from a blog post,
class Array
def each
i = 0
while(i < self.length) do
yield(self[i])
i += 1
end
end
end
my_array = ["a", "b", "c"] …
