Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. (defun split-components/children (data)
  2. (flet ((children-form-p (form)
  3. (and (listp form)
  4. (typep (car form) '(and (not null) (or list string))))))
  5. (let ((index (or (position-if #'children-form-p data)
  6. (length data))))
  7. (values (subseq data 0 index)
  8. (subseq data index)))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement