You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cl-gserver currently only sets (setf) the value of state in (cons back-msg state) to the actor state. It does not make a deep copy to maintain immutable environments. This is up to the user.
However, it could provide at least a model mix-in that defines a generic function make-copy which implementer scan implement to make a deep copy of a component that cl-gserver could automatically use when setfing the state.
The text was updated successfully, but these errors were encountered:
cl-gserver currently only sets (
setf
) the value ofstate
in(cons back-msg state)
to the actor state. It does not make a deep copy to maintain immutable environments. This is up to the user.However, it could provide at least a model mix-in that defines a generic function
make-copy
which implementer scan implement to make a deep copy of a component that cl-gserver could automatically use whensetf
ing the state.The text was updated successfully, but these errors were encountered: