CurryInfo: curry-interface-2.0.1 / CurryInterface.Parser.methodDecl

definition:
methodDecl :: Parser IMethodDecl
methodDecl = 
    IMethodDecl <$>
        (Ident <$> (ident <!> (tokenParenL *> operator <* tokenParenR))) <*!*>
        optional (arity <* skipSomeWs) <*>
        (tokenTyping *!*> qualTypeExpr)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- A parser for a Method Declaration | Ident [Arity] '::' QualTypeExpr
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{() |-> {<*>._#lambda10}}
name:
methodDecl
precedence:
no precedence defined
result-values:
{<*>._#lambda10}
signature:
String -> [(CurryInterface.Types.IMethodDecl, String)]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term