Output returns the i-th output of op.
(i int)
| 68 | |
| 69 | // Output returns the i-th output of op. |
| 70 | func (op *Operation) Output(i int) Output { |
| 71 | return Output{op, i} |
| 72 | } |
| 73 | |
| 74 | // NumInputs returns the number of inputs of op. |
| 75 | func (op *Operation) NumInputs() int { |
no outgoing calls