當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Stream.of方法代碼示例

本文整理匯總了TypeScript中@tempest/core.Stream.of方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Stream.of方法的具體用法?TypeScript Stream.of怎麽用?TypeScript Stream.of使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@tempest/core.Stream的用法示例。


在下文中一共展示了Stream.of方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

  it ('should merge multiple streams into 1', (done) => {
    const stream = merge([
      Stream.of(1),
      Stream.of(2),
      Stream.of(3)
    ])

    const expected = [1, 2, 3]

    stream.subscribe((x) => {
      assert(x === expected.shift())
    }, done, () => {
      assert(expected.length === 0)
      done()
    })
  })
開發者ID:TylorS,項目名稱:tempest,代碼行數:16,代碼來源:index.ts

示例2: it

  it ('should accumulate values over time', (done) => {
    const stream = fold((x, y) => x + y, 0, Stream.of(1, 1, 1))
    const expected = [0, 1, 2, 3]

    stream.subscribe((x) => {
      assert(x === expected.shift())
    }, done, () => done())
  })
開發者ID:TylorS,項目名稱:tempest,代碼行數:8,代碼來源:index.ts

示例3: it

  it ('should take n events and end', (done) => {
    const stream = take(1, Stream.of(1, 2, 3))
    const expected = [1]

    stream.subscribe((x: number) => {
      assert(x === expected.shift())
    }, done, () => done())
  })
開發者ID:TylorS,項目名稱:tempest,代碼行數:8,代碼來源:index.ts

示例4: it

 it ('should be curried', (done) => {
   const f = 2
   const stream = Stream.of(1)
   const add1 = mapTo(f)
   add1(stream).subscribe((x: number) => {
     assert(x === 2)
   }, done, () => done())
 })
開發者ID:TylorS,項目名稱:tempest,代碼行數:8,代碼來源:index.ts

示例5: it

  it ('should drop first n events', (done) => {
    const stream = drop(1, Stream.of(1, 2, 3))
    const expected = [2, 3]

    stream.subscribe((x: number) => {
      assert(x === expected.shift())
    }, done, () => done())
  })
開發者ID:TylorS,項目名稱:tempest,代碼行數:8,代碼來源:index.ts

示例6: it

  it('should combine multiple streams into an array of values', (done) => {
    const stream = combine<number, number, number>([
      Stream.of(1),
      Stream.of(1, 2, 3),
      Stream.of(4)
    ])

    const expected = [
      [1, 3, 4]
    ]

    stream.subscribe(([x, y, z]) => {
      const [a, b, c] = expected.shift()
      assert(x === a)
      assert(y === b)
      assert(z === c)
    }, done, () => done())
  })
開發者ID:TylorS,項目名稱:tempest,代碼行數:18,代碼來源:index.ts


注:本文中的@tempest/core.Stream.of方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。