]> gitweb.factorcode.org Git - factor.git/commitdiff
combinators.extras: fix using..
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 24 Jan 2023 15:34:31 +0000 (09:34 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 24 Jan 2023 15:34:31 +0000 (09:34 -0600)
extra/combinators/extras/extras.factor

index 2b827b3886dc4a972d774b42b6fe4b21181988a4..36b3f0a6ef520e627a452a0bcee318e4c465617c 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (C) 2013 Doug Coleman, John Benediktsson.
 ! See https://factorcode.org/license.txt for BSD license.
 USING: arrays assocs combinators combinators.smart
-generalizations kernel math math.order namespaces quotations
-sequences sequences.generalizations sequences.private
-stack-checker.transforms system words ;
+generalizations graphs.private kernel math math.order namespaces
+quotations sequences sequences.generalizations sequences.private
+sets shuffle stack-checker.transforms system words ;
 IN: combinators.extras
 
 : once ( quot -- ) call ; inline