@basic-streams/map3
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

@basic-streams/map3

map3<A, B, C, D>(
  fn: (a: A, b: B, c: C) => D,
  streamA: Stream<A>,
  streamB: Stream<B>,
  streamC: Stream<C>,
): Stream<D>

Creates a stream containing fn(a, b, c) where a, b and c are the latest values from streamA, streamB and streamC. The resulting stream updates when any of source stream update.

import ofMany from "@basic-streams/of-many"
import map3 from "@basic-streams/map3"

const streamA = ofMany([2, 4], 10000)
const streamB = ofMany([1, 3], 8000)
const streamC = ofMany([0], 3000)
const result = map3((a, b, c) => a + b + c, streamA, streamB, streamC)

result(x => {
  console.log(x)
})

// > 3
// > 5
// > 7

// streamA: _________2_________4
// streamB: _______1_______3
// streamC: __0
// result:  _________3_____5___7

Readme

Keywords

Package Sidebar

Install

npm i @basic-streams/map3

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

5.11 kB

Total Files

8

Last publish

Collaborators

  • pozadi