Tagged Questions
5
votes
3answers
108 views
Scala Map, ambiguity between tuple and function argument list
val m = scala.collection.mutable.Map[String, Int]()
// this doesn't work
m += ("foo", 2)
// this does work
m += (("foo", 2))
// this works too
val barpair = ("bar", 3)
m += barpair
So what's the ...
5
votes
2answers
182 views
Syntax for partial application of curried functions with reverse-associative infix notation
In other words, is there a good reason why this shouldn't compile?
def f(xs: List[Int]) = xs.foldLeft(0) _ // OK
def f(xs: List[Int]) = (xs :\ 0) _ // OK
def f(xs: List[Int]) = (0 /: xs) _
...
5
votes
2answers
521 views
Understanding infix method call and cons operator(::) in Scala
I'm quite new to Scala programming language, and was trying something out stucked in my mind while I was following the lecture notes at here.
I think I couldn't really understand how cons operator ...
5
votes
2answers
628 views
Scala DSL, Object and infix notation
in Scala, if I want to implement a DSL, is there a way to do the following:
I have an Object called "Draw" which contains the function def draw(d:Drawable)
how can I make it so that I can import the ...
5
votes
3answers
196 views
Is it possible to add a method to a built-in type in Scala?
I would like to add a method to a built-in type (say Double), so that I can use an infix operator. Is that possible?
4
votes
4answers
446 views
When to use parenthesis in Scala infix notation
When programming in Scala, I do more and more functional stuff. However, when using infix notation it is hard to tell when you need parenthesis and when you don't.
For example the following piece of ...
1
vote
3answers
83 views
Using unicode symbol as an infix operator in Scala
Does anyone know why the following code doesn't recognize ∙ as a valid infix operator?
object Main extends App {
val c = (I() ∙ I())
}
sealed abstract class Term
case class I() extends Term
case ...