vote up 3 vote down star

I'm new to Scala, and from what I understand yield in Scala is not like yield in C#, it is more like select.

Does Scala have something similar to C#'s yield? C#'s yield is great because it makes writing iterators very easy.

Update: here's a pseudo code example from C# I'd like to be able to implement in Scala:

public class Graph<T> {
   public IEnumerable<T> BreadthFirstIterator() {
      List<T> currentLevel = new List<T>();
      currentLevel.add(_root);

      while ( currentLevel.count > 0 ) {
         List<T> nextLevel = new List<T>();
         foreach( var node in currentLevel ) {
            yield return node;
            nextLevel.addRange( node.Children );
         }
         currentLevel = nextLevel;
      }
   }
}

This code implements an iterative breadth first traversal of a graph, using yield, it returns an iterator, so that callers can traverse the graph using a regular for loop, e.g.:

graph.BreadthFirstIterator().foreach( n => Console.WriteLine( n ) );

In C#, yield is just syntactic sugar to make it easy to write an iterator (IEnumerable in .Net, similar to Iterable in Java). As an iterator, its evaluated lazily.

Update II: I could be wrong here, but I think the whole point of yield in C# is so that you don't have to write a higher order function. E.g. you can write a regular for loop or use a method like select/map/filter/where instead of passing in a function which will then traverse the sequence.

E.g. graph.iterator().foreach( n => println(n) ) instead of graph.iterator( n => println(n) )

This way you can chain them easily, e.g graph.iterator().map( x => x.foo ).filter( y => y.bar >= 2 ).foreach( z => println(z ) )

flag

4 Answers

vote up 2 vote down

The hijacking of the word yield here distracts from its usual intent: as an entry/exit marker in a coroutine. The C# BreadthFirstIterator in the example above appears to use yield in its coroutine sense; after a value is returned by yield, the next call to active BreadthFirstIterator's IEnumerable will continue with the next statement after yield.

In C#, yield is coupled to the idea of iteration rather than being a more general control flow statement, but within that limited domain its behavior is that of a coroutine. Scala's delimited continuations may allow one to define coroutines. Until then, Scala lacks such a capability, especially given its alternate meaning for yield.

link|flag
I think you've hit the nail on the head Seh. It sounds like Java is getting native coroutines which might make this available in Scala too: weblogs.java.net/blog/forax/… – Alex Black Nov 20 at 2:22
vote up 0 vote down check

I think the answer (barring changes in 2.8) is that the answer is no, Scala does not have syntactic sugar similar to C#'s yield to write iterators (implementations of IEumerable or Iterable).

However, in scala you could instead achieve a similar result by passing in a function to the traversal which it would invoke on each item in the traversal. This approach could also be implemented in the same fashion in C#.

Here is how I'd write Traverse in C# without the use of yield:

public class Graph<T> {
   public void BreadthFirstTraversal( Action<T> f) {
      List<T> currentLevel = new List<T>();
      currentLevel.add(_root);

      while ( currentLevel.count > 0 ) {
         List<T> nextLevel = new List<T>();
         foreach( var node in currentLevel ) {
            f(node);
            nextLevel.addRange( node.Children );
         }
         currentLevel = nextLevel;
      }
   }
}

You could then use it like this:

graph.BreadthFirstTraversal( n => Console.WriteLine( n ) );

Or like this:

graph.BreadthFirstTraversal( n =>
{
   Console.WriteLine(n);
   DoSomeOtherStuff(n);
});
link|flag
It's more intuitive with C#'s yield, for sure, though. – Seun Osewa Nov 30 at 1:47
vote up 2 vote down

Even though Scala has a keyword yield, it's quite different from the C# yield, and Ruby's yield is different from both. It seems to be a wildly overused keyword. The use of yield in C# appears very limited at first glance.

To do the same in Scala, you could define your own high-order function. In English, that means a function that takes a function as a parameter.

To take Microsoft's example, here's a Scala method:

object Powers {
  def apply(number:Int, exponent:Int) (f:(Double) => Any) = {
    (new Range(1,exponent+1,1)).map{exponent => f(Math.pow(number, exponent))}
  }
}

Now you have your "iterator":

scala> Powers(2,8){ println(_) }
2.0
4.0
8.0
16.0
32.0
64.0
128.0
256.0

Notes:

  • Powers(2,8) is the same as Powers.apply(2,8). That's just a compiler trick.
  • This method is defined with two parameter lists, which might be confusing. It just allows you to do: Powers(2, 8){ println(_) } instead of Powers(2, 8, {println(_)})

Scala: 1, C#: 0


Update:

For your just-added example, write traverse that does the traversal you want without thinking about how you are going to use it. Then add an extra parameter by adding (f(Node) => Any) after the traverse parameter list, e.g.

def traverse(node:Node, maxDepth:Int)(f(Node) => Any)) { ... }

At the point in traverse where you have a value you would yield with in C#, call f(yieldValue).

When you want to use this "iterator," call traverse and pass a function to it that does whatever it is you want to do for each element in the iterator.

traverse(node, maxDepth) { (yieldValue) =>
  // this is f(yieldValue) and will be called for each value that you call f with
  println(yieldValue)
}

This is a basic case for "functional programming" and you should make sure you understand it to be successful with Scala.

link|flag
Thanks Alex, thats a great example. Question 1: how does Powers(2,8) work? Question 2: in C#, with yield, I can easily write an iterator for any data structure, just by 'yielding' out each item.. E.g. I can easily make an iterator that goes depth-first through a DAG. how would I do that in Scala? – Alex Black Nov 5 at 14:55
Alex, reading it over again, I think your example is a bit off base. 1. Its not lazy (I don't think) like the C# example from Microsoft is. 2. You could implement it it that way in C# too: (e) => Enumerable.Range(e, e+1).Select( n => f( Math.Power(e,n) ) ) – Alex Black Nov 5 at 18:13
a) How does Powers(2,8) work? I'm not sure what you are asking. The map call loops through each element of the Range (which is essentially List(1,2,3,4,5,6,7,8)) and calls the method that is passed with f(number,exponent) where exponent is the current element of the range. b) Sure, I think you can make this do anything C#'s yield can do and a lot more c) It is lazy, if by that you mean it calls println for each result as it is calculated. d) Sure you could do that in C#, but it doesn't demonstrate a custom iteration. – Alex Neth Nov 5 at 19:27
When I asked how does Powers(2,8) worked, I meant what is it that enables you to write Powers(2,8) instead of Powers.apply(2,8). I tried this with an Object of mine and it didn't work. – Alex Black Nov 5 at 20:22
I read your update. I think the gist of my question is not how to use such a Traverse function, but how to write one. I showed how to write one in C#, and I'm curious how to write one in Scala. – Alex Black Nov 5 at 20:26
show 19 more comments
vote up 4 vote down

Yes it does, you may want to look at this question for the answer: http://stackoverflow.com/questions/1052476/can-someone-explain-scalas-yield

Here is the docs from Scala for this type of construct: http://www.scala-lang.org/node/111

UPDATE:

This blog talks about C# yield and Scala: http://hestia.typepad.com/flatlander/2009/01/scala-for-c-programmers-part-1-mixins-and-traits.html

He goes into some detail about how extensions are being used to make IENumerable work compared to using Traits in Scala.

So, you are correct that yield won't function the same way in Scala as C#, but that is because they are very different, and so if you want to do this BreadthFirst as a Trait then you can call the map() and filter and foreach methods, just as you would in C#, but the trait will help solve the problem of how to traverse the collection.

link|flag
Thanks James, I'll check those out. – Alex Black Nov 2 at 14:08
No, they are not the same. Scala 2.7.x does not have an equivalent construct as C#'s "yield". In Scala 2.8.x though, thanks to the Delimited Continuation compiler plugin, it is possible to code a construct using continuation to mimic C# "yield" fairly easily. – Walter Chang Nov 3 at 16:37
Any thoughts on how I reconcile James and Walter's apparently contradictory answers? – Alex Black Nov 3 at 20:41
James, I tried out scala's comprehensions, so far it looks to me like they are always in the form "for enums yield item", and you can't do much else. In C# its a different mechanism, allowing you to call yield at any point in your method, multiple times, allowing you to create an iterator for any data, whereas it looks like comprehensions in Scala are a nice way to write sequences. – Alex Black Nov 5 at 18:46
@Alex Black - Hopefully tonight I will have time to look at them closely and compare better. – James Black Nov 5 at 18:49

Your Answer

Get an OpenID
or

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