definition:
|
setCurrentFunc :: TermDomain a => QName -> Int -> [Int] -> VerifyStateM a ()
setCurrentFunc qf ar vs = do
st <- get
put $ st { vstCurrFunc = (qf,ar,vs) }
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Sets the name and arity of the current function in the state.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
setCurrentFunc
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.TermDomain.TermDomain a => (String, String) -> Prelude.Int
-> [Prelude.Int]
-> Control.Monad.Trans.State.StateT (VerifyState a) Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|