Is that possible to create a type class based on type parameter by inheriting type parameter like in the code below?
I do suspect that this is fundamentally not possible as this is a scala limitation as functional language...
But if possible what I have to change in the code below??
class MyInt[T : Numeric] extends T {
}