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


TypeScript parsing.co函數代碼示例

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


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

示例1: optNH4cH4

function optNH4cH4(n: number): PS.Parser<string> {
  return PS.option('', PS.co(function* () {
    const a1: string = yield countMinMax(0, n, h4c).map(joinStr);
    const a2: string = yield h4;
    return PS.pure(a1 + a2);
  }));
}
開發者ID:syaiful6,項目名稱:jonggrang,代碼行數:7,代碼來源:parsing.ts

示例2:

const ipv6addrz: PS.Parser<string> = PS.co(function* () {
  const ip: string = yield ipv6address;
  const t: string = yield PS.option('', PS.attempt(PS.co(function* () {
    const e: string = yield PS.string('%25');
    const z: string = yield zoneid;
    return PS.pure(e + z);
  })));
  return PS.pure(ip + t);
});
開發者ID:syaiful6,項目名稱:jonggrang,代碼行數:9,代碼來源:parsing.ts

示例3: sequenceP

  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0  // ... 256
];

const hexDigitChar: PS.Parser<string> = PS.satisfy(isHexDigitAt);

const escaped: PS.Parser<string> = sequenceP([ PS.char('%'), hexDigitChar, hexDigitChar ]).map(arrjoinStr);

const subDelims = PS.oneOf(['!', '$', '&', '\'', '(', ')', '*', '+', ',', ';', '=']);

const unreservedChar = PS.satisfy(isUnreserved);

const uscheme: PS.Parser<string> = PS.co(function* () {
  const s: string = yield oneThenMany(PS.anyLetter, PS.satisfy(isSchemeChar)).map(joinStr);
  yield PS.char(':');
  return PS.pure(s + ':');
});

const userinfo: PS.Parser<string> = PS.co(function* () {
  const uu: L.List<string> = yield PS.many(uchar(';:&=+$,'));
  yield PS.char('@');
  return PS.pure(joinStr(uu) + '@');
});

const ipvFuture: PS.Parser<string> = PS.co(function* () {
  const h: string = yield PS.between(PS.char('v'), PS.char('.'), hexDigitChar);
  const a: string = yield PS.many1(PS.satisfy(isIpvFutureChar)).map(joinStr);
  return PS.pure(`v${h}.${a}`);
});
開發者ID:syaiful6,項目名稱:jonggrang,代碼行數:30,代碼來源:parsing.ts

示例4: digits

    if (ix !== -1 && ix === pos) {
      return P.right({ result: i as Month, suffix: { str, pos: pos + 3 }});
    }
  }

  return P.left({ pos, error: new PS.ParseError('Expected one of month name') });
});

const date: PS.Parser<[number, Month, Day]> = PS.co(function* () {
  let d = yield digits(1, 2);
  yield PS.optional(PS.whiteSpace);

  let m = yield month;
  yield PS.optional(PS.whiteSpace);

  let y = yield digits(2, 4);
  if (y >= 70 && y <= 99) {
    y += 1900;
  } else if (y >= 0 && y <= 69) {
    y += 2000;
  }

  return PS.pure([y, m, d]);
});

const time: PS.Parser<[number, number, number]> = PS.co(function* () {
  let h = yield digits(2, 2);
  yield PS.char(':');
  let m = yield digits(2, 2);
  // the seconds fields is optional
  let s = yield PS.option(0, PS.attempt(PS.char(':').chain(() => digits(2, 2))));
開發者ID:syaiful6,項目名稱:jonggrang,代碼行數:31,代碼來源:date.ts


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