Update
ADDFUNCTION
addfunction(Charstring fn, Vector args, Vector row)
STABLE
add fn(args)=row
CLEAR_FUNCTION
clear_function(Charstring fn) -> Function
STABLE
Permanently remove contents of stored function fn
CREATEOBJECT
createobject(Charstring tn) -> Object
STABLE
Create new object of type named tn
DELETE_OBJECTS
delete_objects(Bag b) -> Integer
STABLE
Delete all surrogate objects in bag b.
Return the number of objects deleted.
DROPFUNCTION
dropfunction(Function fn, Integer permanent) -> Function
STABLE
Remove all rows of stored function fn.
`permanent = 1` => cannot be rolled back
REMFUNCTION
remfunction(Charstring fn, Vector args, Vector row)
STABLE
remove fn(args)=row
SETFUNCTION
setfunction(Charstring fn, Vector args, Vector res)
STABLE
set fn(args)=res
