aboutsummaryrefslogtreecommitdiff
path: root/samples/state_rng.js
blob: efb8ff3cc518a1af6114ef951205887619e57160 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import * as state from '../src/state.js'

const rng = max => seed => (1103515245 * seed + 12345) % max
const rand = seed => (g => state.State(g)(g))(rng(1000)(seed))

// or, simply:
const threeNumbers = state.DO(function* () {
    const a = yield rand
    const b = yield rand
    const c = yield rand
    return [a, b, c]
})

console.log(threeNumbers(161)(st => v => v)) // [790, 895, 620]