Function: NOOP

Documentation

Do nothing.

Source

(defun noop (&rest args)
  "Do nothing."
  (declare (ignore args))
  (values))
Source Context