next | previous | forward | backward | up | top | index | toc | home
Parsing > Parser > QQParser

QQParser -- a parser that accepts (and returns) a rational number, one character at a time

Description

The denominator must be present.

i1 : (QQParser : charAnalyzer) "-123456789/54321"

       41152263
o1 = - --------
         18107

o1 : QQ

See also

Code

-- ../../../../Macaulay2/packages/Parsing.m2:88
Function % Parser := (fun,p) -> new Parser from ( c -> if (p' := p c) =!= null then if c === null then fun p' else fun % p' )
| symbol   class              value location of symbol
| ------   -----              ----- ------------------                                   
| fun    : FunctionClosure -- ...   ../../../../Macaulay2/packages/Parsing.m2:88:22-88:22
| p      : Parser          -- ...   ../../../../Macaulay2/packages/Parsing.m2:88:26-88:26