(self, low, high=None, size=None, chunks="auto", dtype="l", **kwargs)
| 699 | |
| 700 | @derived_from(np.random.RandomState, skipblocks=1) |
| 701 | def randint(self, low, high=None, size=None, chunks="auto", dtype="l", **kwargs): |
| 702 | return _wrap_func( |
| 703 | self, "randint", low, high, size=size, chunks=chunks, dtype=dtype, **kwargs |
| 704 | ) |
| 705 | |
| 706 | @derived_from(np.random.RandomState, skipblocks=1) |
| 707 | def random_integers(self, low, high=None, size=None, chunks="auto", **kwargs): |