- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: an idea I had
Wed, 2011-10-19, 19:36
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?