definition: |
word :: String -> Parser () word [] = empty word (c:cs) = char c *> word cs |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Builds a parser that consumes the given string and results in the unit --- value. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({[]}) |-> {yield._#lambda3} || ({:}) |-> {<*>._#lambda10}} |
name: |
word |
precedence: |
no precedence defined |
result-values: |
{<*>._#lambda10,yield._#lambda3} |
signature: |
String -> String -> [((), String)] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |