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


TypeScript transducers-js.comp函數代碼示例

本文整理匯總了TypeScript中transducers-js.comp函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript comp函數的具體用法?TypeScript comp怎麽用?TypeScript comp使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: intoExample

function intoExample () {
  var inc = function(n: number) { return n+1; };
  var isEven = function(n: number) { return n % 2 == 0; };
  var apush = function(arr: number[], x: number) { arr.push(x); return arr; };
  var xf = t.comp(t.map(inc),t.filter(isEven));
  t.into([], xf, [1,2,3,4]); // [2,4]
}
開發者ID:ArtemZag,項目名稱:DefinitelyTyped,代碼行數:7,代碼來源:transducers-js-tests.ts

示例2: catExample

function catExample () {
  var reverse = function(arr: number[]) {
    var arr: number[] = Array.prototype.slice.call(arr, 0);
    arr.reverse();
    return arr;
  };
  var xf = t.comp(t.map(reverse), t.cat);
  t.into([], xf, [[3,2,1],[6,5,4]]); // [1,2,3,4,5,6]
}
開發者ID:ArtemZag,項目名稱:DefinitelyTyped,代碼行數:9,代碼來源:transducers-js-tests.ts

示例3: it

 it('transduces Map without initial values', () => {
   let m1 = Map({a: 1, b: 2, c: 3, d: 4});
   let xform = t.comp(
     t.filter(([k, v]) => v % 2 === 0),
     t.map(([k, v]) => [k, v * 2]),
   );
   let m2 = t.transduce(xform, Map(), m1);
   expect(m1.toObject()).toEqual({a: 1, b: 2, c: 3, d: 4});
   expect(m2.toObject()).toEqual({b: 4, d: 8});
 });
開發者ID:philipp-spiess,項目名稱:immutable-js,代碼行數:10,代碼來源:transformerProtocol.ts

示例4: it

 it('transduces Stack with initial values', () => {
   const v1 = Stack.of(1, 2, 3);
   const v2 = Stack.of(4, 5, 6, 7);
   const xform = t.comp(
     t.filter(x => x % 2 === 0),
     t.map(x => x + 1),
   );
   const r = t.transduce(xform, Stack(), v1, v2);
   expect(v1.toArray()).toEqual([1, 2, 3]);
   expect(v2.toArray()).toEqual([4, 5, 6, 7]);
   expect(r.toArray()).toEqual([7, 5, 1, 2, 3]);
 });
開發者ID:skeet70,項目名稱:immutable-js,代碼行數:12,代碼來源:transformerProtocol.ts


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