From 6f20caab5a70ffa97876d6baa5721912b9ffc738 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 29 Aug 2008 16:16:12 -0500 Subject: [PATCH] new accessors --- extra/combinators/lib/lib.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/combinators/lib/lib.factor b/extra/combinators/lib/lib.factor index 410a97d90f..12f7c6c6a2 100755 --- a/extra/combinators/lib/lib.factor +++ b/extra/combinators/lib/lib.factor @@ -4,7 +4,7 @@ ! See http://factorcode.org/license.txt for BSD license. USING: kernel combinators fry namespaces quotations hashtables sequences assocs arrays stack-checker effects math math.ranges -generalizations macros continuations random locals ; +generalizations macros continuations random locals accessors ; IN: combinators.lib @@ -63,7 +63,7 @@ IN: combinators.lib ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! MACRO: preserving ( predicate -- quot ) - dup infer effect-in + dup infer in>> dup 1+ '[ , , nkeep , nrot ] ;