Tagged Questions
3
votes
5answers
232 views
Mix Scala Option and regular variable in a statement
I would like to write conditional statements mixing transparently Scala Options and regular variables.
For example:
var o1 = Some(1)
var o2: Option[Int] = None
var x = 2
val test1 = x < 3 ...
3
votes
4answers
264 views
Scala compiler says my method is recursive in case when implicits and anonymous class is used
I want to be able to write code like
10 times {
doSomething
}
So I thought I could do that with implicits.
When i execute the following code in the Scala REPL it gets defined correctly
...