definition:
|
getFreshVarIndex :: TransStateM Int
getFreshVarIndex = get >>= return . freshVar
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Gets the current fresh variable index of the state.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
getFreshVarIndex
|
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
|