@basic-streams/ap
v1.0.0
Published
ap operator for basic-streams
Downloads
24,792
Readme
@basic-streams/ap
ap<T, U>(streamf: Stream<(x: T) => U>, streamv: Stream<T>): Stream<U>
Creates a stream that will contain values created by applying the latest
function from streamf
to the latest value from streamv
every time one of
them updates.
import ofMany from "@basic-streams/of-many"
import ap from "@basic-streams/ap"
const streamf = ofMany([x => x + 2, x => x - 2], 10000)
const streamv = ofMany([1, 2, 3], 8000)
const result = ap(streamf, streamv)
result(x => {
console.log(x)
})
// > 3
// > 4
// > 0
// > 1
// x => x + 2 x => x - 2
// streamf: _________._________.
// streamv: _______1_______2_______3
// result: _________3_____4___0___1