Method: (PLACE PLACE)

Documentation

Returns the current value of PLACE.

Source

(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