definition:
|
posOfFun :: ICOptions -> QName -> Int
posOfFun opts qn =
maybe (funError opts $ "Internal error in ICurry.Compiler:\n" ++
"arity of operation " ++ showQName qn ++ " is unknown")
id
(qmapLookup qn (optFunMap opts))
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
posOfFun
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ICOptions -> (String, String) -> Prelude.Int
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|