The yield-keyword tag has no wiki summary.
1
vote
1answer
46 views
Convert a traversable to another at run time in scala
I would like to be able to go through all the Bs of an traversable of A. I tried the following code:
object Test {
class A
class B extends A
class C extends A
var someAs: Traversable[A] = ...
...
0
votes
1answer
56 views
Ruby: Overloading Yield Function
I noticed while learning Ruby that both of these uses of the each method work and produce the same output, and I was wondering how Ruby makes this happen (and how I can make it happen for my own ...
1
vote
1answer
190 views
Python - Understanding the send function of a generator
I'm studying in Python yield and find that yield is not only the way in which generators output a return value but also a way to put values into a generator. For example the following code
def f():
...
6
votes
4answers
432 views
Scala - can 'for-yield' clause yields nothing for some condition?
In Scala language, I want to write a function that yields odd numbers within a given range. The function prints some log when iterating even numbers. The first version of the function is:
def ...
8
votes
3answers
279 views
“yield” keyword for C++, How to Return an Iterator from my Function?
Consider the following code.
std::vector<result_data> do_processing()
{
pqxx::result input_data = get_data_from_database();
return process_data(input_data);
}
...
1
vote
2answers
250 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 ...
6
votes
1answer
237 views
Is 'yield' keyword a syntactic sugar ? What is its Implementation [duplicate]
Possible Duplicate:
yield statement implementation
I've seen msdn docs and it says:
The yield keyword signals to the compiler that the method in which it appears is an iterator block. ...
8
votes
3answers
561 views
Is “yield keyword” useful outside of an iterator block? [closed]
The yield keyword documentation says:
The yield keyword signals to the compiler that the method in which it
appears is an iterator block.
I have encountered code using the yield keyword ...
4
votes
3answers
479 views
Returning and iterable collection using yield in scala
I have a DateTime and TimeSpan class in Scala (assume that the < and + operators work as they should). I'm trying to define a 'range' function that takes a start/stop time and a timespan for ...
4
votes
4answers
160 views
Why does calling Enumerable.First() appear to return a copy of the first item in the enumeration
Er, not quite sure how to phrase this but..
Given an IEnumerable created using yield return, containing three instances of a class, why does calling .First() seem to return a 'copy' of the first ...
1
vote
1answer
296 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"
...
8
votes
4answers
8k views
What are the main uses of yield(), and how does it differ from join() and interrupt()?
I am a little bit confused about the use of yield() method in Java, specifically in the example code below. I've also read that yield() is 'used to prevent execution of a thread'.
My questions are:
...
5
votes
1answer
100 views
Why is the C# compiler claiming 'use of an unassigned variable' prior to 'yield return' and dynamic?
The compiler complains that resultingThing in the code below is being used before being assigned to.
private IEnumerable<IThing> FindThings(dynamic spec)
{
if (spec == null)
yield ...
0
votes
2answers
561 views
Whats the alternative to 'yield' function in Django
The 'yield' function streams the output to the browser i.e. it appends the value to the response.
My requirement is that instead of "appending", is there any built in function which overwrites the ...
10
votes
3answers
2k views
Is it posible to use 'yield' to generate 'Iterator' instead of a list in Scala?
Is it posible to use yield as an iterator without evaluation of every value?
It is a common task when it is easy to implement complex list generation, and then you need to convert it into Iterator, ...
4
votes
4answers
2k views
What does the “yield” keyword do in Ruby?
I encountered the following Ruby code:
class MyClass
attr_accessor :items
...
def each
@items.each{|item| yield item}
end
...
end
What does the each method do? In ...
2
votes
3answers
1k views
Rails partial template rendering repeatedly when a helper method uses the yield keyword
I have seen some strange behavior when using rails with partial layouts plus a helper method coded as an iterator using the yield keyword. I am hoping someone can:
Explain what's going on and why I ...
1
vote
5answers
270 views
Is using YIELD a read-only way to return a collection?
I'm writing an interface which has a collection property which I want to be read only. I don't want users of the interface to be able to modify the collection. The typical suggestion I've found for ...
3
votes
2answers
669 views
scala for yield setting a value
I want to create a list of GridBagPanel.Constraints.
I read it in the scala programming book, that there is a cool for-yield construction, but I probably haven't understood the way it works correctly, ...
3
votes
2answers
134 views
how can a compiler that recognizes the iterators be implemented?
I have been using iterators for a while and I love them.
But although I have thought hard about it, I could not figure out "how a compiler that recognizes the iterators" be implemented. I have also ...
32
votes
5answers
7k views
Why can't yield return appear inside a try block with a catch?
The following is okay:
try
{
Console.WriteLine("Before");
yield return 1;
Console.WriteLine("After");
}
finally
{
Console.WriteLine("Done");
}
The finally block runs when the ...