コードをよりクリーンにするために、doubleの配列に対していくつかの暗黙的なメソッドを定義したいと思います。理想的には、次のようになります。
type Vec = Array[Double]
implicit def enrichVec(v: Vec) = new {
def /(x: Double) = v map (_/x)
def *(u: Vec) = (v zip u) map {case (x,y) => x*y} sum
def normalize = v / math.sqrt(v * v)
}
ただし、normalize
Scalaは暗黙的なメソッドを再帰的に適用しないため、関数は記述どおりに機能しません。具体的には、エラーが発生しますNote: implicit method enrichVec is not applicable here because it comes after the application point and it lacks an explicit result type
。のコードを明示的に書き出すことでこれを回避できますがnormalize
、それは醜いでしょう。より良い解決策はありますか?