definition:
|
insertField :: String -> JValue -> JObject -> JObject
insertField name val (JSONObject jo) = JSONObject (insert jo)
where
insert [] = [(name,val)]
insert ((k,v):fs) | k == name = (name,val) : fs
| otherwise = (k,v) : insert fs
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Inserts a name / JSON value pair in a JSON object.
--- If the name already exists, the existing value is overwritten.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{JSONObject}) |-> {JSONObject}}
|
name:
|
insertField
|
precedence:
|
no precedence defined
|
result-values:
|
{JSONObject}
|
signature:
|
String -> JValue -> JObject -> JObject
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|