I'm looking into the scala actors library, and there I found the following code:
private[scheduler] trait TerminationMonitor {
_: IScheduler =>
protected var activeActors = 0
...
The question is what is the meaning of _: IScheduler => is here?
I'm new to Scala and it confuses me that there are so many different meanings with the underscore.
Thanks for your help in advance!