(lb, ub, n, state)
| 74 | |
| 75 | @nb.jit(nopython=True) |
| 76 | def bounded_uints(lb, ub, n, state): |
| 77 | out = np.empty(n, dtype=np.uint32) |
| 78 | for i in range(n): |
| 79 | out[i] = bounded_uint(lb, ub, state) |
| 80 | |
| 81 | |
| 82 | bounded_uints(323, 2394691, 10000000, ctypes_state.value) |
no test coverage detected