Return the node inputs. Returns: list(IrNode): node inputs wrapped by IrNode.
(self)
| 5300 | |
| 5301 | @property |
| 5302 | def inputs(self): |
| 5303 | """ |
| 5304 | Return the node inputs. |
| 5305 | |
| 5306 | Returns: |
| 5307 | list(IrNode): node inputs wrapped by IrNode. |
| 5308 | """ |
| 5309 | return [IrNode(n) for n in self.node.inputs] |
| 5310 | |
| 5311 | @property |
| 5312 | def outputs(self): |
no test coverage detected