Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

519
votes
10answers
118k views

The Python yield keyword explained

What is the use of the yield keyword in Python? What does it do? For example, I'm trying to understand this code (**): def node._get_child_candidates(self, distance, min_dist, max_dist): if ...
78
votes
9answers
19k views

What does “yield break;” do in C#?

I have seen this syntax in MSDN, but I don't know what it does. Does anyone know?
56
votes
9answers
8k views

What is the yield keyword used for in C#?

In the How Can I Expose Only a Fragment of IList<> question one of the answers had the following code snippet: IEnumerable<object> FilteredList() { foreach( object item in FullList ) ...
46
votes
4answers
13k views

Can someone explain Scala's yield?

I understand Ruby and Python's yield. What does Scala's yield do?
43
votes
11answers
2k views

When NOT to use yield (return) [closed]

There are several useful questions here on SO about the benefits of yield return. For example, Can someone demystify the yield keyword Interesting use of the c# yield keyword What is the yield ...
33
votes
5answers
5k views

IEnumerable and Recursion using yield return

I have an IEnumerable<T> method that I'm using to find controls in a WebForms page. The method is recursive and I'm having some problems returning the type I want when the yield return is ...
26
votes
4answers
3k 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) where T : class, ...
22
votes
9answers
1k views

Can someone demystify the yield keyword?

I have seen the yield keyword being used quite a lot on Stack Overflow and blogs. I don't use LINQ. Can someone explain the yield keyword? I know that similar questions exist. But none really ...
19
votes
3answers
7k views

What's the yield keyword in javascript?

I heard about a "yield" keyword in javascript, but i found very poor documentation about it. Can someone explain me (or recommend a site that explains) its usage and what it is used for?
19
votes
2answers
3k views

Implementing yield (yield return) using Scala continuations

How might one implement C# yield return using Scala continuations? I'd like to be able to write Scala Iterators in the same style. A stab is in the comments on this Scala news post, but it doesn't ...
19
votes
16answers
3k views

Is yield useful outside of LINQ?

When ever I think I can use the yield keyword, I take a step back and look at how it will impact my project. I always end up returning a collection instead of yeilding because I feel the overhead of ...
18
votes
8answers
3k views

Python: generator expression vs. yield

In Python, is there any difference between creating a generator object through a generator expression versus using the yield statement? Using yield: def Generator(x, y): for i in xrange(x): ...
17
votes
3answers
3k views

Is there a Java equivalent to C#'s 'yield' keyword?

I know there is no direct equivalent in Java itself, but perhaps a third party? It is really convenient. Currently I'd like to implement an iterator that yields all nodes in a tree, which is about ...
17
votes
4answers
2k views

Nested yield return with IEnumerable

I have the following function to get validation errors for a card. My question relates to dealing with GetErrors. Both methods have the same return type IEnumerable<ErrorInfo>. private static ...
17
votes
11answers
3k views

C# IEnumerator/yield structure potentially bad?

Background: I've got a bunch of strings that I'm getting from a database, and I want to return them. Traditionally, it would be something like this: public List<string> GetStuff(string ...
17
votes
3answers
2k views

Is Yield Return == IEnumerable & IEnumerator?

I just want to verify, is yield return a shortcut for implementing IEnumerable and IEnumerator? Thanks, John
17
votes
7answers
9k views

Rails check if yield :area is defined in content_for

I want to do a conditional rendering at the layout level based on the actual template has defined content_for(:an__area), any idea how to get this done?
16
votes
4answers
463 views

Does the C# Yield free a lock?

I have the following method: public static IEnumerable<Dictionary<string, object>> GetRowsIter (this SqlCeResultSet resultSet) { // Make sure we don't multi thread the database. ...
15
votes
6answers
650 views

Yield in a recursive function

I am trying to do something to all the files under a given path. I don't want to collect all the file names beforehand then do something with them, so I tried this: import os import stat def ...
13
votes
6answers
2k 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 because it makes ...
12
votes
6answers
372 views

What is yield?, and what is the benifit to use yield in asp.net?

can you help me in understanding of yield keyword in asp.net(C#). Thanks Vij
12
votes
5answers
674 views

When should I use Yield in c#?

I have a vage understanding of the Yield keyword in c#, but I haven't yet seen the need to use it in my code. This probably comes from a lack of understanding of it.. So; What are some typical good ...
12
votes
2answers
2k views

F#: Why is using a sequence so much slower than using a list in this example

Background: I have a sequence of contiguous, time-stamped data. The data-sequence has holes in it, some large, others just a single missing value. Whenever the hole is just a single missing value, I ...
12
votes
3answers
2k views

How does a threading.Thread yield the rest of its quantum in Python?

I've got a thread that's polling a piece of hardware. while not hardware_is_ready(): pass process_data_from_hardware() But there are other threads (and processes!) that might have things to do. ...
12
votes
7answers
3k views

Some help understanding “yield”

In my everlasting quest to suck less I keep bumping into the "yield" statement. I have tried to wrap my head around it a few times now, but I'm stumped every time with the same error. It goes a ...
11
votes
5answers
324 views

Events vs. Yield

I have a multithreaded application that spawns threads for several hardware instruments. Each thread is basically an infinite loop (for the lifetime of the application) that polls the hardware for new ...
11
votes
4answers
2k views

C#: yield return within a foreach fails - body cannot be an iterator block

Consider this bit of obfuscated code. The intention is to create a new object on the fly via the anonymous constructor and yield return it. The goal is to avoid having to maintain a local collection ...
11
votes
5answers
2k 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 { foreach ...
11
votes
5answers
3k views

Ruby's yield feature in relation to computer science

I recently discovered Ruby's blocks and yielding features, and I was wondering: where does this fit in terms of computer science theory? Is it a functional programming technique, or something more ...
11
votes
8answers
5k views

Iterator Pattern VB.net (C# would use yield!)

I want to implement the iterator pattern in VB.net, which does not have the yield keyword. Any ideas or links please?
10
votes
2answers
994 views

How does Ruby on Rails use yield for layouts?

yield is used to call a block. How does this work in Rails where yield is used for layouts? -# application.html.haml %body= yield Does it use blocks somewhere or is the method simply overridden?
10
votes
4answers
2k views

implementing a state machine using the “yield” keyword

Is it feasible to use the yield keyword to implement a simple state machine as shown here. To me it looks like the C# compiler has done the hard work for you as it internally implements a state ...
9
votes
1answer
203 views

Continuations and for comprehensions — what's the incompatibility?

I am new to Scala and trying to wrap my head around continuations I'm trying to reproduce the yield return C# statement. Following this post, I have written the following code : package ...
9
votes
4answers
298 views

C# - Serialization and the Yield statement

Is it possible to serialize a method containing yield statements (or a class that contains such a method) such that when you rehydrate the class, the internal state of the generated iterator is ...
9
votes
5answers
2k views

Javascript check yield support

i read about the yield keyword in javascript and i need to use it in my project. I read that this keyword has been implemented starting from a certain version of JS so i think that old browsers don't ...
9
votes
6answers
3k views

What's the use of yield break?

Can anyone see a use for the "yield break" statement that could not have been otherwise achieved by using "break" or "return". This statement seems to be utterly useless. What's more, without this ...
8
votes
6answers
413 views

Is there a way to efficiently yield every file in a directory containing millions of files?

I'm aware of os.listdir, but as far as I can gather, that gets all the filenames in a directory into memory, and then returns the list. What I want, is a way to yield a filename, work on it, and then ...
8
votes
4answers
620 views

generator/block to iterator/stream conversion

Basically I want to convert this: def data(block: T => Unit) to a Stream (dataToStream is a hypothetical function that do this conversion): val dataStream: Stream[T] = dataToStream(data) I ...
8
votes
1answer
225 views

Rewrite simple ruby function to use a block

I dont know the correct terminology for what i am asking I tried to google it and couldnt ind anything for the same reason I am writing a ruby library, and i want to rewite the functions so they work ...
8
votes
10answers
1k views

Yield keyword value added?

still trying to find where i would use the "yield" keyword in a real situation. I see this thread on the subject http://stackoverflow.com/questions/39476/what-is-the-yield-keyword-used-for-in-c ...
8
votes
1answer
1k 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() { ...
8
votes
4answers
2k views

Using yield to iterate over a datareader might not close the connection?

Here is a sample code to retrieve data from a database using the yield keyword that I found in a few place while googling around : public IEnumerable<object> ExecuteSelect(string commandText) { ...
8
votes
7answers
1k views

What are real life applications of yield?

I know what yield does, and I've seen a few examples, but I can't think of real life applications, have you used it to solve some specific problem? (Ideally some problem that cannot be solved some ...
7
votes
5answers
209 views

How is it possible to see C# code after compilation/optimization?

I was reading about the yield keyword when I came across a sample chapter from C# in Depth: http://csharpindepth.com/Articles/Chapter6/IteratorBlockImplementation.aspx. The first block of code ...
7
votes
3answers
239 views

Which is generally faster, a yield or an append?

I am currently in a personal learning project where I read in an XML database. I find myself writing functions that gather data and I'm not sure what would be a fast way to return them. Which is ...
7
votes
4answers
503 views

When is 'Yield' really needed? [closed]

Possible Duplicate: C# - Proper Use of yield return What can be a real use case for C# yield? Thanks.
7
votes
4answers
754 views

How would I yield an immutable.Map in Scala?

I have tried this but it does not work: val map:Map[String,String] = for { tuple2 <- someList } yield tuple2._1 -> tuple2._2 How else would I convert a List of Tuple2s into a Map?
7
votes
3answers
305 views

Caching IEnumerable

public IEnumerable<ModuleData> ListModules() { foreach (XElement m in Source.Descendants("Module")) { yield return new ModuleData(m.Element("ModuleID").Value); } } ...
7
votes
4answers
3k views

Ruby: Proc#call vs yield

What are the behavioural differences between the following two implementations in Ruby of the thrice method? module WithYield def self.thrice 3.times { yield } # yield to the implicit ...
7
votes
5answers
2k views

Reseting generator object in Python

I have generator object returned by multiple yield. Preparation to call this generator is rather time-consuming operation. That is why I want to reuse generator several times. y = ...

1 2 3 4 5 6