Returns the current value of PLACE.
(defmethod place ((place place))
"Returns the current value of PLACE."
(etypecase (place.getter place)
(function (funcall (place.getter place)))
(arnesi::closure/cc
(with-call/cc
(funcall (place.getter place))))))Source Context