Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/30/2024 in all areas

  1. https://www.lee-mac.com/listintersection.html
    2 points
  2. Doesn't ssadd add the entity if it is not there else it ignores it - so not sure you need the(if (ssmemb.....) ? (weekend.... )
    1 point
  3. And how if you have 4 or more sets? Maybe like this : (defun MR:ListsIntersection ( ll / r l1 l2 ) (while (and (setq l1 (car ll)) (setq l2 (cadr ll))) (setq r (vl-remove-if-not '(lambda ( x ) (member x l2)) l1)) (setq ll (subst r l2 ll)) (setq ll (cdr ll)) ) r ) (MR:ListsIntersection '((1 3 5 2 4) (6 8 1 3 5) (9 0 1 3 5) (7 4 2 1 3) (1 3 5 7 9))) ;;; (1 3) M.R.
    1 point
  4. Hi all, I'm looking for a lisp to make a enlarge detail. Thanks for any help. Pascal
    1 point
×
×
  • Create New...