factor/basis/persistent/hashtables/config/config.factor

9 lines
343 B
Factor
Raw Normal View History

2008-08-06 02:06:14 -04:00
! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2009-10-28 14:38:27 -04:00
USING: layouts kernel parser math sequences ;
2008-08-06 02:06:14 -04:00
IN: persistent.hashtables.config
2009-10-28 14:38:27 -04:00
: radix-bits ( -- n ) << cell 4 = 4 5 ? suffix! >> ; foldable
: radix-mask ( -- n ) radix-bits 2^ 1 - ; foldable
: full-bitmap-mask ( -- n ) radix-bits 2^ 2^ 1 - ; inline