Tagged Questions
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 ...
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, ...
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 ...
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 ...
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 ...
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 ...
6
votes
1answer
401 views
yield return and return
I often find myself writing sth. like this:
if (condition)
{
yield return whatever;
yield break;
}
I find it quite verbose to have to use two yield statements for the standard paradigm "return ...
6
votes
3answers
1k views
How does this function work in detail?
I got this method (inside a Unity C# Script), but I do not understand how the "yield" part actually works.
I know from the MSDN that the function will return an IEnumerator which I could iterate ...
5
votes
3answers
392 views
Is it posible in scala to use yield to generate Iterator instead of list?
Is it posible to use yield as iterator without evaluation every value?
It is common task when it is easy to implement complex list generation, and then you need to convert it into iterator because you ...
5
votes
1answer
394 views
Scala implementation of C#-like yield with “for”
I'm trying to use various scala implementations of C#-like yield return (i.e. link text) with "for" -constructions such as:
private def permutations[T](s: Vector[T]) = {
def swap(i: Int, j: Int) {
...
4
votes
3answers
141 views
Iterating over a custom collection of objects with yield and foreach without boxing/unboxing
I'm trying to take advantage of iterators in C# to clean up some spatial queries on objects in a game I'm making.
Here's what I'm doing currently:
public struct ObjectInfo
{
public ...
4
votes
5answers
287 views
The wonders of the yield keyword
Ok, as I was poking around with building a custom enumerator, I had noticed this behavior that concerns the yield
Say you have something like this:
public class EnumeratorExample
{
...
1
vote
2answers
63 views
Alternative Way To Write Yield
Is there a way to get rid of the .FirstOrDefault() with the following setup. I love using the yield statement but I want to condense the IsRequired method to the point where I dont have to use ...
1
vote
1answer
98 views
Python yield generator function
So I've got this ginormous humungous class, of which the only relevant code is:
def get_col_is_numeric(self, col_name):
"Returns an iterator with each cell length in the named column"
...
1
vote
1answer
460 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've seen it written as ...
0
votes
1answer
61 views
Yield in Python needs to be implemented in java
I have a following question:
Write a class that takes a series of integers from a generator that generates numbers one by one. Include two functions: 1- Sum 2- Average.
I know that yield statement ...
0
votes
2answers
256 views
Yield String from List[Char]
I have a l: List[Char] of characters which I want to concat and return as a String in one for loop.
I tried this
val x: String = for(i <- list) yield(i)
leading to
error: type mismatch;
...