Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Let's say I define some operators for my class like this:

class A {
    def +(f: Float) = /* ... */
}

val a: A = new A

This allows me to do a + 1f, easy enough. What if I want to enable the lib's user to be able to write 1f + a, too? How can I implement that?

share|improve this question

2 Answers

up vote 10 down vote accepted

In Scala 2.9 you can import this implicit conversion:

implicit def floatPlusAExtender (x: Float) = 
  new {
    def + (a: A) = a + x
  }

and use it as you wanted. Since Scala 2.10 you better do this conversion like so:

implicit class FloatPlusAExtender (x: Float) {
  def + (a: A) = a + x
}

or even better like so:

implicit class FloatPlusAExtender (val x: Float) extends AnyVal {
  def + (a: A) = a + x
}

The last way is called Value Class and in difference to preceding two it provides this functionality with zero overhead. (Thanks, axel22) This is also the new stuff that comes with 2.10

Or you can just modify A like so:

class A {
  def + (x: Float) = /* ... */
  def +: (x: Float) = this + x
}

and use it like so:

1f +: a

The last approach is preferable.

share|improve this answer
whe exactly is it preferable? – Lambda Dusk Jul 7 '12 at 17:12
It is an idiomatic way of writing right-associated operators which are actually just unary (single parameter) methods in scala. Also performance-wise the first approach introduces an overhead of instantiation of a wrapper class – Nikita Volkov Jul 7 '12 at 22:12
I'll implement both. – Lambda Dusk Jul 7 '12 at 22:57
1  
In Scala 2.10 you can also make the FloatPlusAExtender extend AnyVal to avoid instantiating a wrapper object. – axel22 Jul 8 '12 at 17:12
@axel22 Is that a Value classes initiative? – Nikita Volkov Jul 8 '12 at 19:41
show 1 more comment

One approach is the pimp-my-library-pattern:

class FloatWithPlusA(f: Float) {
  def +(a: A) = a + f
}

implicit def floatPlusA(f: Float): FloatWithPlusA =
  new FloatWithPlusA(f)

val a: A = new A
a + 1.0f  /* a.+(1.0f) */
1.0f + a  /* floatPlusA(1.0f).+(a) */

Another approach is adding a right-associative method, but with the obvious disadvantage that the syntax of the two operators varies:

class A {
  val f: Float = 1.0f

  def +(f: Float) = this.f + f
  def +:(f: Float) = this.f + f
}

val a: A = new A
a + 1.0f
1.0f +: a
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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