Talk:Set: Difference between revisions

Content added Content deleted
 
Line 2: Line 2:
==Lists as sets in common lisp==
==Lists as sets in common lisp==
The common lisp entry says it forms sets from lists. Does it handle duplicates correctly? Does it ignore order i.e does the set 1,2,3,4 equal the set 3,2,4,1 when the lists that they are composed from has the elements originally in those different orders? I cannot tell from the examples given. --[[User:Paddy3118|Paddy3118]] 18:31, 23 October 2011 (UTC)
The common lisp entry says it forms sets from lists. Does it handle duplicates correctly? Does it ignore order i.e does the set 1,2,3,4 equal the set 3,2,4,1 when the lists that they are composed from has the elements originally in those different orders? I cannot tell from the examples given. --[[User:Paddy3118|Paddy3118]] 18:31, 23 October 2011 (UTC)
: No, it doesn't do either. As far as I can tell (speaking out of my week and half CL expertise, so take that with a grain of salt), the set operators in Common Lisp are more of a convenience than a serious application. Duplicate elements can be removed by <code>remove-duplicates</code>, and adding elements can use <code>adjoin</code> which is no-op if element is already in set. The normal list equality test (likely <code>equal</code>) will not ignore order, that's why I used subset tests in the example. --[[User:Ledrug|Ledrug]] 18:42, 23 October 2011 (UTC)