Function: drop-while--anon-cmacro
drop-while--anon-cmacro is a function defined in subr.el.gz.
Signature
(drop-while--anon-cmacro FORM PRED LIST)
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
;; Could not find source code, showing raw function object.
#[(form pred list)
((ignore pred list)
(let* ((tail (make-symbol "tail")))
(if (not (internal--effect-free-fun-arg-p pred)) form
`(let ((,tail ,list))
(while (and ,tail (funcall ,pred (car ,tail)))
(setq ,tail (cdr ,tail)))
,tail))))
(t)]