definition:
|
updateValue :: (String->String) -> WidgetRef -> GuiPort -> IO ()
updateValue upd wref gport = do
val <- getValue wref gport
setValue wref (upd val) gport
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Updates the (String) value of a variable w.r.t. to an update function.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
updateValue
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(String -> String) -> WidgetRef -> GuiPort -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|