I understand Ruby and Python's yield. What does Scala's yield do?
|
4
|
|
|
|
|
|
It is used in sequence comprehensions (like Python's list-comprehensions and generators, where you may use It is applied in combination with Simple example (from scala-lang)
The corresponding expression in F# would be
or
in Linq. Ruby's |
||||||||||||
|
|
|
Unless you get a better answer from a Scala user (which I'm not), here's my understanding. It only appears as part of an expression beginning with Something like:
So there's one output item for each input (although I believe there's a way of dropping duplicates). This is quite different from the "imperative continuations" enabled by yield in other languages, where it provides a way to generate a list of any length, from some imperative code with almost any structure. (If you're familiar with C#, it's closer to Linq's |
||
|
|
|
|
Yes, as Earwicker said, it's pretty much the equivalent to LINQ's
in Scala you have instead
It's also important to understand that
|
||
|
|
|
|
I think the accepted answer is great, but it seems many people have failed to grasp some fundamental points. First, Scala's "for comprehensions" are equivalent to Haskell's "do" notation, and it is nothing more than a syntactic sugar for composition of multiple monadic operations. As this statement will most likely not help anyone who needs help, so let's try again... :-) Scala's "for comprehensions" is syntactic sugar for composition of multiple operations with map, flatMap and filter. Or foreach. Scala actually translates a for-expression into calls to those methods, so any class providing them, or a subset of them, can be used with for comprehensions. First, let's talk about the translations. There are very simple rules: 1) This
is translated into
2) This
is translated into
3) This
is translated into
4) This
is translated into
When you look at very simple for comprehensions, the map/foreach alternatives look, indeed, better. Once you start composing them, though, you can easily get lost in parenthesis and nesting levels. When that happens, for comprehensions are usually much clearer. I'll show one simple example, and intentionally ommit any explanation. You can decide which syntax was easier to understand.
or
|
|||
|
|
