Im quite new in Scala. I need to get the parametrization of a class. How can I do this ? the class looks like this:
class OutPort[T](name: Symbol, owner: Component) extends Port[T](name)
i got many OutPorts in an LinkedList. In another class i want to get the parametrization of an instance of OutPort, but the parametrization is arbitrary and a solution with isInstanceOf is not capable. is there a special method for such purpose, which i didnt covered yet ?
Lunatikz