由於反射方法:是隱式的方法參數嗎? - 使用Scala的2.10反射
scala> val sortMethod = typeOf[::[_]].member(newTermName("sorted"))
sortMethod: reflect.runtime.universe.Symbol = method sorted
scala> sortMethod.typeSignature
res122: reflect.runtime.universe.Type = [B >: A](implicit ord: scala.math.Ordering[B])Repr
什麼是找出是否該方法具有隱含參數(在斯卡拉2.10-M4 +)的最好方法?