I have seen this kind of code many times before, most recently at scala-user mailing list:

context(GUI) { implicit ec =>
  // some code
}

context is defined as:

def context[T](ec: ExecutionContext)(block: ExecutionContext => T): Unit = { 
  ec execute { 
    block(ec) 
  } 
}

What purpose does the keeyword implicit achieve when placed in front of a lambda expression parameter?

link|improve this question

possible duplicate: Scala Functional Literals with Implicits – Antoras Feb 18 at 9:10
feedback

1 Answer

up vote 9 down vote accepted
scala> trait Conn
defined trait Conn

scala> def ping(implicit c: Conn) = true
ping: (implicit c: Conn)Boolean

scala> def withConn[A](f: Conn => A): A = { val c = new Conn{}; f(c); /*cleanup*/ }
withConn: [A](f: Conn => A)A

scala> withConn[Boolean]( c => ping(c) )
res0: Boolean = true

scala> withConn[Boolean]{ c => implicit val c1 = c; ping }
res1: Boolean = true

scala> withConn[Boolean]( implicit c => ping )
res2: Boolean = true

The last line is essentially a shorthand for the second last.

link|improve this answer
1  
BTW, rather than using implicit parameters to propagate the context (in this example, Conn) through the computation, you can use the Reader monad. gist.github.com/1395578 – retronym Feb 18 at 10:23
That explains it. Thanks! – missingfaktor Feb 18 at 10:24
Thanks for the gist too. Starred it. – missingfaktor Feb 18 at 10:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.