vote up 14 vote down star
4

I understand Ruby and Python's yield. What does Scala's yield do?

flag

4 Answers

vote up 12 vote down check

It is used in sequence comprehensions (like Python's list-comprehensions and generators, where you may use yield too).

It is applied in combination with for and writes a new element into the resulting sequence.

Simple example (from scala-lang)

/** Turn command line arguments to uppercase */
object Main {
  def main(args: Array[String]) {
    val res = for (a <- args) yield a.toUpperCase
    println("Arguments: " + res.toString)
  }
}

The corresponding expression in F# would be

[ for a in args -> a.toUpperCase ]

or

from a in args select a.toUpperCase

in Linq.

Ruby's yield has a different effect.

link|flag
1  
So why would I use yield instead of map? This map code is equivalent val res = args.map(_.toUpperCase) , right? – Geo Jun 27 at 12:23
In case you like the syntax better. Also, as alexey points out, comprehensions also provide nice syntax for accessing flatMap, filter and foreach. – Nathan Sanders Jun 27 at 12:44
I would much prefer the args map {_ toUpperCase} syntax personally as it "feels" much more OO. It seems more in keeping with the Scala aim of delivering via library support what is only available in other languages via bespoke constructs and keywords – oxbow_lakes Jun 27 at 13:24
Right. If you just have a simple map -- one generator with no if -- I'd certainly say calling map is more readable. If you have a several generators depending on each other, and/or filters, you may prefer a for expression. – Alexey Romanov Jun 27 at 13:35
Please note that the example given is not equivalent to the map expression: it's the same. A for comprehension is translated to calls to map, flatMap and filter. – Daniel Jun 29 at 17:03
vote up 3 vote down

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 for, which states how to generate a new list from an existing list.

Something like:

var doubled = for (n <= original) yield n * 2

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 select operator than it is to yield return).

link|flag
vote up 3 vote down

Yes, as Earwicker said, it's pretty much the equivalent to LINQ's select and has very little to do with Ruby's and Python's yield. Basically, where in C# you would write

select ??? from ...

in Scala you have instead

for ... yield ???

It's also important to understand that for-comprehensions don't just work with sequences, but with any type which defines certain methods, just like LINQ:

  • If your type defines just map, it allows for-expressions consisting of a single generator.
  • If it defines flatMap as well as map, it allows for-expressions consisting of several generators.
  • If it defines foreach, it allows for-loops without yield (both with single and multiple generators).
  • If it defines filter, it allows for-filter expressions starting with an if in the for expression.
link|flag
vote up 21 vote down

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

for(x <- c1; y <- c2; z <-c3) {...}

is translated into

c1.forearch(x => c2.foreach(y => c3.foreach(z => {...})))

2) This

for(x <- c1; y <- c2; z <- c3) yield {...}

is translated into

c1.flatMap(x => c2.flatMap(y => c3.map(z => {...})))

3) This

for(x <- c; if cond) yield {...}

is translated into

c.filter(x => cond).map(x => {...})

4) This

for(x <- c; y = ...) yield {...}

is translated into

c.map(x => (x, ...)).map((x,y) => {...})

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.

l.flatMap(sl => sl.filter(el => el > 0).map(el => el.toString.length))

or

for{sl <- l
    el <- sl
    if el > 0}
yield el.toString.length
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.