What does "=>" mean in Scala? -
what "=>" mean in example below?
trait myservice[e <: entity[id]] extends management { this: repository[e] => // code }
in example means this
has of type repository[e]
. means trait myservice
can mixed classes extending repository[e]
.
Comments
Post a Comment