ldiff, tailp
ldiff list object → result-list
tailp object list → generalized-boolean
list—a list, which might be a dotted list.
object—an object.
result-list—a list.
Per X3J13. -kmp 05-Oct-93generalized-boolean—a generalized boolean.
15.5.0 7
(CLtL definition superseded by later cleanup issue clarifying behavior.)If object is the same as some tail of list, tailp returns true; otherwise, it returns false.
15.2.0 38If object is the same as some tail of list, ldiff returns a fresh list of the elements of list that precede object in the list structure of list; otherwise, it returns a copy2 of list.
(let ((lists '#((a b c) (a b c . d))))
(dotimes (i (length lists)) ()
(let ((list (aref lists i)))
(format t "~2&list=~S ~21T(tailp object list)~
~44T(ldiff list object)~%" list)
(let ((objects (vector list (cddr list) (copy-list (cddr list))
'(f g h) '() 'd 'x)))
(dotimes (j (length objects)) ()
(let ((object (aref objects j)))
(format t "~& object=~S ~21T~S ~44T~S"
object (tailp object list) (ldiff list object))))))))
⊳
⊳ list=(A B C) (tailp object list) (ldiff list object)
⊳ object=(A B C) T NIL
⊳ object=(C) T (A B)
⊳ object=(C) NIL (A B C)
⊳ object=(F G H) NIL (A B C)
⊳ object=NIL T (A B C)
⊳ object=D NIL (A B C)
⊳ object=X NIL (A B C)
⊳
⊳ list=(A B C . D) (tailp object list) (ldiff list object)
⊳ object=(A B C . D) T NIL
⊳ object=(C . D) T (A B)
⊳ object=(C . D) NIL (A B C . D)
⊳ object=(F G H) NIL (A B C . D)
⊳ object=NIL NIL (A B C . D)
⊳ object=D T (A B C)
⊳ object=X NIL (A B C . D)
→ NIL
Neither ldiff nor tailp modifies either of its arguments.
None.
Should be prepared to signal an error of type type-error if list is not a proper list or a dotted list.
If the list is a circular list, tailp will reliably yield a value only if the given object is in fact a tail of list. Otherwise, the consequences are unspecified: a given implementation which detects the circularity must return false, but since an implementation is not obliged to detect such a situation, tailp might just loop indefinitely without returning in that case.
tailp could be defined as follows:
(defun tailp (object list)
(do ((list list (cdr list)))
((atom list) (eql list object))
(if (eql object list)
(return t))))
and ldiff could be defined by:
!!! I just up the following based on the Description. Does everyone agree it's right? -kmp 29-Aug-93
(defun ldiff (list object)
(do ((list list (cdr list))
(r '() (cons (car list) r)))
((atom list)
(if (eql list object) (nreverse r) (nreconc r list)))
(when (eql object list)
(return (nreverse r)))))
This stuff probably isn't needed. -kmp 7-Jan-91 Since the \param{list} can be a \term{dotted list}, the end test must be \funref{atom}, not \funref{endp}. For example, if \f{(tailp \i{x} l)} returns \term{true}, it means that there is an \i{n} such that \f{(nthcdr \i{n} \param{list})} returns \i{x}. Note that it doesn't follow that if \term{tailp} returns \nil, it is safe to go \funref{nthcdr}'s into the \param{list} looking for \i{x}, since the \param{list} might be a \term{dotted list} and \funref{nthcdr} might hit bad data.