- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
self referencing function
Mon, 2009-01-05, 23:42
hello,
actually i want to define a function returning a function ... its probably simple but i dont get it.
from java point of view i would write something like
trait ICommand {
def apply : ICommand
}
is it possible to declare that as a single function ?
many regards,
lars
actually i want to define a function returning a function ... its probably simple but i dont get it.
from java point of view i would write something like
trait ICommand {
def apply : ICommand
}
is it possible to declare that as a single function ?
many regards,
lars
Tue, 2009-01-06, 00:17
#2
Re: self referencing function
Unfortunately, this isn't allowed
type ICommand = (() => ICommand)
But this is
trait ICommand extends (() => ICommand)
On Mon, Jan 5, 2009 at 2:35 PM, Lars Gersmann <lars.gersmann@gmail.com> wrote:
type ICommand = (() => ICommand)
But this is
trait ICommand extends (() => ICommand)
On Mon, Jan 5, 2009 at 2:35 PM, Lars Gersmann <lars.gersmann@gmail.com> wrote:
hello,
actually i want to define a function returning a function ... its probably simple but i dont get it.
from java point of view i would write something like
trait ICommand {
def apply : ICommand
}
is it possible to declare that as a single function ?
many regards,
lars
Tue, 2009-01-06, 02:47
#3
Re: self referencing function
James Iry wrote:
> Unfortunately, this isn't allowed
>
> type ICommand = (() => ICommand)
type ICommand = () => T forSome { type T <: () => T }
trait A extends (() => A)
def f(a: A): ICommand = a
On Mon, Jan 05, 2009 at 11:35:02PM +0100, Lars Gersmann wrote:
> actually i want to define a function returning a function ... its probably
> simple but i dont get it.
>
> from java point of view i would write something like
>
> trait ICommand {
> def apply : ICommand
> }
scala> trait SelfRef extends Function0[SelfRef] { def apply(): SelfRef = this }
defined trait SelfRef
scala> new AnyRef with SelfRef
res0: java.lang.Object with SelfRef =
scala> res0()
res1: SelfRef =
scala> res1()
res2: SelfRef =
> is it possible to declare that as a single function ?
Define "single function". I don't think you can do this with anonymous functions.