String -> ByteString -mtl +transformers
Warning: Unknown type ByteString
Runs a Reader and extracts the final value from it. (The inverse of reader.)
Evaluate a state computation with the given initial state and return the final value, discarding the final state.
* m s = fst (runState m
>
The underlying computation, as a function of the environment.
Evaluate a state computation with the given initial state and return the final value, discarding the final state.
* m s = liftM fst
> (runStateT m