(x)
| 368 | done(``bool``)) |
| 369 | """ |
| 370 | def first_if_tuple(x): |
| 371 | return x[0] if isinstance(x, tuple) else x |
| 372 | state = first_if_tuple(state).__array__() |
| 373 | next_state = first_if_tuple(next_state).__array__() |
| 374 |
nothing calls this directly
no outgoing calls
no test coverage detected