SliceInterfacePortReference constructor
- BridgeModule module,
- String portName, {
- required InterfaceReference<
PairInterface> interfaceReference, - List<
int> ? dimensionAccess, - int? sliceUpperIndex,
- int? sliceLowerIndex,
Creates a reference to a sliced interface port.
The slice is defined by dimensionAccess
for indexing and
sliceUpperIndex
/sliceLowerIndex
for slicing.
Implementation
SliceInterfacePortReference(
super.module,
super.portName, {
required this.interfaceReference,
super.dimensionAccess,
super.sliceUpperIndex,
super.sliceLowerIndex,
});