CurryInfo: contract-prover-4.0.0 / ContractProver.getFreshVar

definition: Info
 
getFreshVar :: TransStateM Int
getFreshVar = do
  st <- get
  put $ st { freshVar = freshVar st + 1 }
  return $ freshVar st
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Gets a fresh variable index and increment the index in the state.
failfree: Info
 ()
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {() |-> _}
name: Info
 getFreshVar
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Control.Monad.Trans.State.StateT TransState Prelude.IO Prelude.Int
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms