Implicit parameter for literal function
问题 While reading Play! Framework documentation, I came across this snippet: def index = Action { implicit request => session.get("connected").map { user => Ok("Hello " + user) }.getOrElse { Unauthorized("Oops, you are not connected") } } Documentation explains implicit there: Alternatively you can retrieve the Session implicitly from a request Besides, I read this post: Literal with Implicit and it seems logically that function cannot have implicit parameter. If I well figured out, this is