Swap all the inputs of sgv0 and sgv1 (see reroute_inputs).
(sgv0, sgv1)
| 392 | |
| 393 | |
| 394 | def swap_inputs(sgv0, sgv1): |
| 395 | """Swap all the inputs of sgv0 and sgv1 (see reroute_inputs).""" |
| 396 | return _reroute_sgv_inputs(sgv0, sgv1, _RerouteMode.swap) |
| 397 | |
| 398 | |
| 399 | def reroute_inputs(sgv0, sgv1): |
nothing calls this directly
no test coverage detected