CurryInfo: currypp-3.2.0 / CPP.ICode.Parser.RegexParser.parse

definition: Info
 
parse :: LangParser
parse po st = let (par, _) = parsen po (lex st) [0] 1
              in return (liftPM (\p -> "( captureG 0 (" ++ showRegex p ++ "))")
                par)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
The parse function allows the translation of extended regular expression
to normal Curry code.
@param po - The position of the ERE code
@param st - The ERE code
@return A string containg normal curry code with the same semantics as the
        original ERE code
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 parse
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 CPP.ICode.ParsePos.Pos -> String -> Prelude.IO (CPP.ICode.ParseMonad.PM String)
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term