Proposed levels of skill for the scala programming language, can be used as a base for a curriculum
Related links:
- the scala style guide.
- a scala basic exam
- examples of scala abuses
- sample training curriculum Artima
| //Trait that bridges between slick and Play2-auth. Just mixin with controllers | |
| trait Auth2SlickBridge { | |
| self: StackableController => | |
| def AuthAction[A](p: BodyParser[A], params: AttributeKey[_]*)(f: RequestWithAttributes[A] => Action[A]): Action[A] = { | |
| AsyncStack(p, params:_*) { implicit rs => | |
| f(rs).apply(rs) | |
| } | |
| } |
Proposed levels of skill for the scala programming language, can be used as a base for a curriculum
Related links: