Gets the ith input node @param i Offset of the input node @return Input node or null
(int i)
| 135 | * @return Input node or null |
| 136 | */ |
| 137 | public Node in(int i) { return _inputs.get(i); } |
| 138 | public Node out(int i) { return _outputs.get(i); } |
| 139 | public final Ary<Node> outs() { return _outputs; } |
| 140 |