# randu
> Create an iterator for generating uniformly distributed pseudorandom numbers between `0` and `1`.
## Usage
```javascript
var iterator = require( '@stdlib/random/iter/randu' );
```
#### iterator( \[options] )
Returns an iterator for generating uniformly distributed pseudorandom numbers between `0` and `1`.
```javascript
var it = iterator();
// returns
## Notes
- If an environment supports `Symbol.iterator`, the returned iterator is iterable.
- **Warning**: the default underlying source of pseudorandom numbers may **change** in the future. If exact reproducibility is required, either explicitly specify a PRNG via the `name` option or use an underlying PRNG directly.
- If PRNG state is "shared" (meaning a state array was provided during iterator creation and **not** copied) and one sets the underlying generator state to a state array having a different length, the iterator does **not** update the existing shared state and, instead, points to the newly provided state array. In order to synchronize the output of the underlying generator according to the new shared state array, the state array for **each** relevant iterator and/or PRNG must be **explicitly** set.
- If PRNG state is "shared" and one sets the underlying generator state to a state array of the same length, the PRNG state is updated (along with the state of all other iterator and/or PRNGs sharing the PRNG's state array).
## Examples
```javascript
var iterator = require( '@stdlib/random/iter/randu' );
var it;
var r;
// Create a seeded iterator for generating pseudorandom numbers:
it = iterator({
'seed': 1234,
'iter': 10
});
// Perform manual iteration...
while ( true ) {
r = it.next();
if ( r.done ) {
break;
}
console.log( r.value );
}
```
[@stdlib/random/base/mt19937]: https://www.npmjs.com/package/@stdlib/random/tree/main/base/mt19937
[@stdlib/random/base/minstd]: https://www.npmjs.com/package/@stdlib/random/tree/main/base/minstd
[@stdlib/random/base/minstd-shuffle]: https://www.npmjs.com/package/@stdlib/random/tree/main/base/minstd-shuffle