Tagged Questions
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()
{
...
5
votes
3answers
895 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 ...