标签:newlisp
member函数用法很奇怪,用一个元素到list中查找,如果找到,则将找到的元素和之后所有元素变成一个新的list返回,如果找不到则返回nil.
(set ‘aList ‘(a b c d e f g h)) → (a b c d e f g h) (member ‘d aList) → (d e f g h) (member 55 aList) → nil
标签:newlisp
原文地址:http://blog.csdn.net/csfreebird/article/details/39123423