CurryInfo: failfree-4.0.0 / Main.getFreshVar

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