]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/crypto/aes/utils/utils.factor
factor: trim using lists
[factor.git] / extra / crypto / aes / utils / utils.factor
index 06787bae8843687159d0a21d1042a5adfdec8792..0c701ec16faf21e88f0b85e4ee0120becef703fa 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2013 Fred Alger
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays columns combinators generalizations grouping
-kernel locals math math.bitwise prettyprint sequences
+USING: combinators grouping kernel math math.bitwise
+prettyprint sequences
 sequences.private ;
 IN: crypto.aes.utils
 : gb0 ( a -- a0 ) 0xff bitand ; inline