Function: EXPLAIN!

Documentation

Explain the results of RESULT-LIST using a detailed-text-explainer with output going to *test-dribble*

Source

(defun explain! (result-list)
  "Explain the results of RESULT-LIST using a
detailed-text-explainer with output going to *test-dribble*"
  (explain (make-instance 'detailed-text-explainer) result-list *test-dribble*))
Source Context