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


TypeScript jsverify.fn函數代碼示例

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


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

示例1: describe

    describe('Chain instance', () => {
      jsv.property('associativity', jsv.nat, jsv.fn(jsv.nat), jsv.fn(jsv.nat), (a, f, g) => {
        function fn(a: number) {
          return T.pure(f(a));
        }

        function gn(a: number) {
          return T.pure(g(a));
        }

        return T.toPromise(T.bothPar(
          T.pure(a)['fantasy-land/chain'](fn)['fantasy-land/chain'](gn),
          T.pure(a)['fantasy-land/chain'](x => fn(x)['fantasy-land/chain'](gn))
        ).map(tEquals));
      });

      jsv.property('#chain(f) ignore failure', jsv.string, jsv.nat, jsv.fn(jsv.nat), (m, a, f) => {
        function transform(n: number) {
          return T.pure(f(n));
        }
        const err = new Error(m);

        return T.toPromise(T.bothPar(
          T.attempt(T.raise(err)['fantasy-land/chain'](transform)),
          T.attempt(T.raise(err))
        ).map(tEquals));
      });
    });
開發者ID:syaiful6,項目名稱:jonggrang,代碼行數:28,代碼來源:property.ts

示例2: describe

  describe('mapMaybe', () => {
    jsv.property('functor identity', maybeArb(jsv.nat), t => deepEq(t, M.mapMaybe(t, id)));

    jsv.property('functor compose', maybeArb(jsv.nat), jsv.fn(jsv.nat), jsv.fn(jsv.nat), (t, f, g) =>
      deepEq(M.mapMaybe(t, x => f(g(x))), M.mapMaybe(M.mapMaybe(t, g), f))
    );
  });
開發者ID:syaiful6,項目名稱:jonggrang,代碼行數:7,代碼來源:maybe.ts

示例3: describe

  describe('bimapEither', () => {
    jsv.property('maps the first function over the left value', leftArb(jsv.nat), jsv.fn(jsv.nat),
                 jsv.fn(jsv.nat), (t, f, g) => deepEq(E.bimapEither(t, f, g).value, f(t.value)));

    jsv.property('maps the second function over the right value', rightArb(jsv.nat), jsv.fn(jsv.nat),
                 jsv.fn(jsv.nat), (t, f, g) => deepEq(E.bimapEither(t, g, g), E.mapEither(t, g)));
  });
開發者ID:syaiful6,項目名稱:jonggrang,代碼行數:7,代碼來源:either.ts


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