(state_data, a, size, replace, p)
| 800 | |
| 801 | |
| 802 | def _choice_rs(state_data, a, size, replace, p): |
| 803 | state = array_creation_dispatch.RandomState(state_data) |
| 804 | return state.choice(a, size=size, replace=replace, p=p) |
| 805 | |
| 806 | |
| 807 | def _choice_validate_params(state, a, size, replace, p, axis, chunks): |
nothing calls this directly
no test coverage detected