get_out_data_nodes_and_port_indexes
Function Usage
Obtains the data node and port index list of the specified output index.
Prototype
1 | get_out_data_nodes_and_port_indexes(out_index: int) -> List[Tuple[Node, int]] |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
out_index |
Input |
Output index. |
Returns
(List[Tuple[Node, int]]) (output node, port index) list.
Constraints
- If out_index is not an integer, TypeError is thrown.
- If the value fails to be obtained, RuntimeError is thrown.
Parent topic: Node