Method: (NR-HEAP-BYTES MARK-AND-SWEEP-HEAP)

Documentation

Returns the number of heap bytes that must be handled by the garbage collector.

Source

(defmethod nr-heap-bytes ((heap mark-and-sweep-heap))
  "Returns the number of heap bytes that must be handled by the garbage
collector."
  (heap-size heap))
Source Context