2010-02-26 11:01:57 -05:00
|
|
|
! Copyright (C) 2010 Daniel Ehrenberg
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2010-02-26 16:01:01 -05:00
|
|
|
USING: accessors assocs hashtables kernel sets
|
2010-02-26 11:01:57 -05:00
|
|
|
sequences parser ;
|
|
|
|
QUALIFIED: sets
|
|
|
|
IN: hash-sets
|
|
|
|
|
|
|
|
! In a better implementation, less memory would be used
|
|
|
|
TUPLE: hash-set { table hashtable read-only } ;
|
|
|
|
|
|
|
|
: <hash-set> ( members -- hash-set )
|
2010-03-17 20:12:25 -04:00
|
|
|
H{ } clone [ [ dupd set-at ] curry each ] keep hash-set boa ;
|
2010-02-26 11:01:57 -05:00
|
|
|
|
|
|
|
INSTANCE: hash-set set
|
|
|
|
M: hash-set in? table>> key? ; inline
|
|
|
|
M: hash-set adjoin table>> dupd set-at ; inline
|
|
|
|
M: hash-set delete table>> delete-at ; inline
|
|
|
|
M: hash-set members table>> keys ; inline
|
2010-04-13 07:43:29 -04:00
|
|
|
M: hash-set set-like drop dup hash-set? [ members <hash-set> ] unless ;
|
|
|
|
M: hash-set clone table>> clone hash-set boa ;
|
2010-04-17 17:25:51 -04:00
|
|
|
M: hash-set null? table>> assoc-empty? ;
|
2010-02-26 11:01:57 -05:00
|
|
|
|
|
|
|
M: sequence fast-set <hash-set> ;
|
2010-02-26 13:24:26 -05:00
|
|
|
M: f fast-set drop H{ } clone hash-set boa ;
|
2010-02-26 12:07:37 -05:00
|
|
|
|
|
|
|
M: sequence duplicates
|
2010-03-16 20:17:26 -04:00
|
|
|
f fast-set [ [ in? ] [ adjoin ] 2bi ] curry filter ;
|
2010-04-13 07:43:29 -04:00
|
|
|
|
|
|
|
<PRIVATE
|
|
|
|
|
|
|
|
: (all-unique?) ( elt hash -- ? )
|
|
|
|
2dup in? [ 2drop f ] [ adjoin t ] if ; inline
|
|
|
|
|
|
|
|
PRIVATE>
|
|
|
|
|
|
|
|
M: sequence all-unique?
|
|
|
|
dup length <hashtable> hash-set boa
|
|
|
|
[ (all-unique?) ] curry all? ;
|