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


TypeScript F.eos方法代碼示例

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


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

示例1: combinator

function combinator() {
    return C.letters()
        .then(C.char(' '))
        .then(C.lowerCase().rep())
        .then(C.char(' '))
        .then(C.notString('romane').rep())
        .then(F.eos());
}
開發者ID:d-plaindoux,項目名稱:parsec,代碼行數:8,代碼來源:letter-letterAs.ts

示例2:

import {Streams, F, C, N} from '@masala/parser'
import {assertEquals, assertArrayEquals, assertTrue} from '../../assert';

// Parsec needs a stream of characters
const document = '12';
const s = Streams.ofString(document);

// numberLitteral defines any int or float number
// We expect a number, then eos: End Of Stream
// We use drop() because we don't need the value of F.eos, we only want 12
const numberParser = N.numberLiteral().then(F.eos().drop());
const parsing = numberParser.parse(s);

// If the parser reached the end of stream (F.eos) without rejection, parsing is accepted
assertTrue(parsing.isAccepted());
// The parser has a 12 value inside the monoid
assertEquals (12, parsing.value);

開發者ID:d-plaindoux,項目名稱:parsec,代碼行數:17,代碼來源:number.ts

示例3:

import {Streams, F, C, N} from '@masala/parser'
import {assertEquals} from '../../assert';


/**
 * Created by Nicolas Zozol on 05/11/2017.
 */
const stream = Streams.ofString('abc');
const charsParser = C.char('a')
    .then(C.char('b'))
    .then(C.char('c'))
    .then(F.eos().drop()); // End Of Stream ; droping its value, just checking it's here
let charsParsing = charsParser.parse(stream);
assertEquals('abc', charsParsing.value.join(''), 'Chars parsing');

開發者ID:d-plaindoux,項目名稱:parsec,代碼行數:14,代碼來源:chars.ts

示例4: combinator

function combinator() {
    return expr().then(F.eos().drop());
}
開發者ID:d-plaindoux,項目名稱:parsec,代碼行數:3,代碼來源:plus-minus.ts


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