Noteworthy Scala 3 improvements
Twirl now supports using in it's templates, so you can define template parameters like:
@(x: Int)(using y: Int)
Thanks to @ajafri2001 for implementing this feature :raised_hands::
- https://github.com/playframework/twirl/pull/933 Prepend "using" at the callsite when definition site has implicit parameter
Changes
- #961 [2.0.x] Pa...