Talk:Set

From Rosetta Code
Revision as of 18:31, 23 October 2011 by rosettacode>Paddy3118 (→‎Lists as sets in common lisp: A few Q's.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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. --Paddy3118 18:31, 23 October 2011 (UTC)