newLISP Fan Club

Forum => newLISP in the real world => Topic started by: eddier on December 19, 2003, 01:39:10 PM

Title: cons
Post by: eddier on December 19, 2003, 01:39:10 PM
Would it be hard to make (cons take multiple arguments?



Example



(cons 'a 'b 'c) => (a b c)



Eddie
Title:
Post by: HPW on December 19, 2003, 01:47:38 PM
Why not?



(list 'a 'b 'c)
Title:
Post by: Sammo on December 19, 2003, 01:49:16 PM
In newLISP, isn't 'list' basically the same as 'cons' but allowing an arbitray number of args?  Is so, can you (setq mycons list) and then (mycons 'a 'b 'c), or perhaps use (constant cons list) in the appropriate context to reassign 'cons'?
Title:
Post by: Lutz on December 19, 2003, 04:04:16 PM
I agree with Sam: 'cons' with multiple args for 'cons' is like using 'list' , also

 'cons' is also a lot like 'push' becuase it can take a list as the second argument:



(set 'lst '(b c))



(cons 'a lst) => (a b c)



(push 'a lst) => 'a



lst => (a b c)



the difference beeing, that push is non-destructive and returns the new list, while push has the side effect of changing the list.



If it where for me, I would just dump 'cons', because I think having 'list' and 'push', you got all you ever need, but ... there are many traditional LISPers who wouldn't want to 'lisp'  without it. Personally, I think, I never have used it.



Lutz
Title:
Post by: eddier on December 22, 2003, 06:20:24 AM
Your right! I wasn't thinking functionally (at all) Friday.



dunce Eddie
Title:
Post by: HPW on December 22, 2003, 06:44:18 AM
>there are many traditional LISPers who wouldn't want to 'lisp' without it.



Yes, the alisp people are such people.

When it does not hurt, let it as it is.
Title:
Post by: Lutz on December 22, 2003, 09:37:14 AM
Yes 'cons' stays. The advantage of most of the traditional LISP functions is, that they can be implemented with very little code, so it doesn't save much, when they are thrown out.



Lutz