typedPort<PortType extends Logic> method

TypedPortReference<PortType> typedPort<PortType extends Logic>(
  1. String portRef
)

Gets a typed reference to portRef within this interface.

Throws a RohdBridgeException if the port does not exist or its root port is not a PortType. Parsing and interface-port behavior are delegated to port.

Implementation

TypedPortReference<PortType> typedPort<PortType extends Logic>(
        String portRef) =>
    port(portRef).asTyped<PortType>();