そのジェネリック型のパラメーターを取り、そのジェネリック型の何かを返すメソッドの上限を持つジェネリック ファクトリ メソッドを作成しようとしています。私はこれを試しました、
def apply[Type <: {def *(that: Type): Type}](length: Int)(implicit manifest: Manifest[Type]) = new Array[Type](length)
しかし、私はこのエラーを受け取ります、
Parameter type in structural refinement may not refer to an abstract type defined outside that refinement
とにかくこれを機能させる方法はありますか?