Gets the ith input node @param i Offset of the input node @return Input node or null
(int i)
| 125 | * @return Input node or null |
| 126 | */ |
| 127 | public Node in(int i) { return _inputs.get(i); } |
| 128 | public Node out(int i) { return _outputs.get(i); } |
| 129 | public final Ary<Node> outs() { return _outputs; } |
| 130 |