This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Re: an idea I had

1 reply
d_m
Joined: 2010-11-11,
User offline. Last seen 35 weeks 2 days ago.

On Wed, Oct 19, 2011 at 08:32:01PM +0200, Mario Fusco wrote:
> Sorry, but I don't understand your notation or more probably there's a Scala
> feature that I ignore.
> Are you importing a variable instead of a type? Is that allowed in Scala?

Try it out in the REPL!

scala> case class Foo(i:Int) { def blah(j:Int) = i * j }
defined class Foo

scala> def bar(foo:Foo) = { import foo._; blah(10) }
bar: (foo: Foo)Int

scala> bar(Foo(33))
res0: Int = 330

We're importing the 'blah' method from an instance of Foo, so we can
call it as a function.

Hopefully this helps a bit?

Mario Fusco
Joined: 2010-12-14,
User offline. Last seen 1 year 24 weeks ago.
Re: an idea I had

Try it out in the REPL!

scala> case class Foo(i:Int) { def blah(j:Int) = i * j }
defined class Foo

scala> def bar(foo:Foo) = { import foo._; blah(10) }
bar: (foo: Foo)Int

scala> bar(Foo(33))
res0: Int = 330

We're importing the 'blah' method from an instance of Foo, so we can
call it as a function.

Hopefully this helps a bit?

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland