-
-
Notifications
You must be signed in to change notification settings - Fork 117
Open
Description
At the moment it is only possible to use Type classes with a wildcard, thus loosing all type information
@import TypedCaseClass
@(typedCaseClass: TypedCaseClass[_])(implicit request: RequestHeader,
messages: Messages){
//...
}
It would be nice, if something like this would be possible:
@import TypedCaseClass
@[T](typedCaseClass: TypedCaseClass[T])(implicit request: RequestHeader,
messages: Messages){
//...
}
santiagomera, crater2150, mkurz and Lasering