原文:What is the shortest notation to define an operator as a method alias in Scala?
Given the generic register method below I would like to define the := operator as a symbolic alias. def register[Prop <: Property[_]](prop: Prop): Prop @inline final def :=[Prop <: Property[_]]...