Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
391 views

Is non-local return in Scala new?

A colleague just showed me this and I was surprised that it compiled at all: def toUpper(s: Option[String]): String = { s.getOrElse(return "default").toUpperCase // ^^^^^^ // a return ...
2
votes
1answer
106 views

Where is nonlocals()?

How do I obtain the non-local variables for the current scope? The functions vars, locals, and globals exist, but is there a function to get the nonlocals? Why aren't the nonlocals listed when ...
0
votes
2answers
246 views

Is non-local type inference in Haskell or OCaml really useful? [closed]

First, let us assume that local type inference is the sort of type inference found in Scala and C#. Scala local type inference is explained here: http://www.scala-lang.org/node/127 Also, let us ...