(self, low, high=None, size=None, chunks="auto", dtype="l", **kwargs)
| 673 | |
| 674 | @derived_from(np.random.RandomState, skipblocks=1) |
| 675 | def randint(self, low, high=None, size=None, chunks="auto", dtype="l", **kwargs): |
| 676 | return _wrap_func( |
| 677 | self, "randint", low, high, size=size, chunks=chunks, dtype=dtype, **kwargs |
| 678 | ) |
| 679 | |
| 680 | @derived_from(np.random.RandomState, skipblocks=1) |
| 681 | def random_integers(self, low, high=None, size=None, chunks="auto", **kwargs): |