- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
compact notation for mutators
Wed, 2009-01-14, 01:22
I have a pair of case class like this:
case class AccessorAction[T,V](val accessor:(T) => V)
case class MutatorAction[T,V](val mutator:(T,V) => _)
I can do this:
val aa = AccessorAction[MyRectangle,Int](_.width)
which is nice and compact, and this:
val ma = MutatorAction((r:MyRectangle, w:Int) => r.width = w)
but for the latter I really want something like this:
val ma = MutatorAction[MyRectangle,Int](_.width = _)
Is something like that possible?
Wed, 2009-01-14, 01:57
#2
Re: compact notation for mutators
On Wed, Jan 14, 2009 at 12:21:27AM +0000, Sam Stainsby wrote:
> but for the latter I really want something like this:
>
> val ma = MutatorAction[MyRectangle,Int](_.width = _)
>
> Is something like that possible?
scala> class MyRectangle { var width = 0 }
defined class MyRectangle
scala> case class MutatorAction[T,V](mutator: Function2[T,V,Unit])
defined class MutatorAction
scala> val ma = MutatorAction[MyRectangle,Int](_.width = _)
ma: MutatorAction[MyRectangle,Int] = MutatorAction()
scala> val rect = new MyRectangle
rect: MyRectangle = MyRectangle@4a64a
scala> ma.mutator(rect, 15)
scala> rect.width
res14: Int = 15
Wed, 2009-01-14, 02:07
#3
Re: compact notation for mutators
On Tue, 13 Jan 2009 16:30:38 -0800, Alex Boisvert wrote:
> The type inferencer doesn't seem to like it... but this is possible:
>
> scala> val ma = MutatorAction( (_:MyRectangle).width = (_:Int) )
> ma: MutatorAction[MyRectangle,Int] = MutatorAction()
Neat! That works for me. Thanks.
Sam.
Wed, 2009-01-14, 02:17
#4
Re: compact notation for mutators
On Tue, 13 Jan 2009 16:54:48 -0800, Paul Phillips wrote:
> scala> case class MutatorAction[T,V](mutator: Function2[T,V,Unit])
That also works - the difference is that my definition was equivalent to:
case class MutatorAction[T,V](mutator: Function2[T,V,_])
(any return type allowed) which seems to cause the problems. I might be
able to live without it though.
Cheers,
Sam.
Wed, 2009-01-14, 02:37
#5
Re: Re: compact notation for mutators
On Wed, Jan 14, 2009 at 01:07:34AM +0000, Sam Stainsby wrote:
> > scala> case class MutatorAction[T,V](mutator: Function2[T,V,Unit])
>
> That also works - the difference is that my definition was equivalent to:
>
> case class MutatorAction[T,V](mutator: Function2[T,V,_])
Is there some reason this won't do it for you:
case class MutatorAction[T,V](mutator: Function2[T,V,Any])
Wed, 2009-01-14, 03:17
#6
Re: compact notation for mutators
On Tue, 13 Jan 2009 17:31:14 -0800, Paul Phillips wrote:
>
> Is there some reason this won't do it for you:
>
> case class MutatorAction[T,V](mutator: Function2[T,V,Any])
I can't see one. That works - thanks!
The type inferencer doesn't seem to like it... but this is possible:
scala> val ma = MutatorAction( (_:MyRectangle).width = (_:Int) )
ma: MutatorAction[MyRectangle,Int] = MutatorAction(<function>)
alex