Fix $or
[factor/jcg.git] / unmaintained / combinators-lib / lib.factor
blob5e78d183b0b5f2bd791b2c49c43793ba04ab1aac
1 ! Copyright (C) 2007, 2008 Slava Pestov, Chris Double,
2 !                          Doug Coleman, Eduardo Cavazos,
3 !                          Daniel Ehrenberg.
4 ! See http://factorcode.org/license.txt for BSD license.
5 USING: kernel combinators fry namespaces make quotations hashtables
6 sequences assocs arrays stack-checker effects math math.ranges
7 generalizations macros continuations random locals accessors ;
9 IN: combinators.lib
11 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12 ! Currying cleave combinators
13 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
15 : bi, ( obj quot quot -- quot' quot' )
16     [ [ curry ] curry ] bi@ bi ; inline
17 : tri, ( obj quot quot quot -- quot' quot' quot' )
18     [ [ curry ] curry ] tri@ tri ; inline
20 : bi*, ( obj obj quot quot -- quot' quot' )
21     [ [ curry ] curry ] bi@ bi* ; inline
22 : tri*, ( obj obj obj quot quot quot -- quot' quot' quot' )
23     [ [ curry ] curry ] tri@ tri* ; inline
25 : bi@, ( obj obj quot -- quot' quot' )
26     [ curry ] curry bi@ ; inline
27 : tri@, ( obj obj obj quot -- quot' quot' quot' )
28     [ curry ] curry tri@ ; inline
30 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
31 ! Generalized versions of core combinators
32 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34 : quad ( x p q r s -- ) [ keep ] 3dip [ keep ] 2dip [ keep ] dip call ; inline
36 : 4slip ( quot a b c d -- a b c d ) 4 nslip ; inline
38 : 4keep ( w x y z quot -- w x y z ) 4 nkeep ; inline 
40 : 2with ( param1 param2 obj quot -- obj curry )
41     with with ; inline
43 : 3with ( param1 param2 param3 obj quot -- obj curry )
44     with with with ; inline
46 : with* ( obj assoc quot -- assoc curry )
47     swapd [ [ -rot ] dip call ] 2curry ; inline
49 : 2with* ( obj1 obj2 assoc quot -- assoc curry )
50     with* with* ; inline
52 : 3with* ( obj1 obj2 obj3 assoc quot -- assoc curry )
53     with* with* with* ; inline
55 : assoc-each-with ( obj assoc quot -- )
56     with* assoc-each ; inline
58 : assoc-map-with ( obj assoc quot -- assoc )
59     with* assoc-map ; inline
61 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
62 ! ifte
63 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
65 MACRO: preserving ( predicate -- quot )
66     dup infer in>>
67     dup 1+
68     '[ _ _ nkeep _ nrot ] ;
70 MACRO: ifte ( quot quot quot -- )
71     '[ _ preserving _ _ if ] ;
73 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
74 ! switch
75 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
77 MACRO: switch ( quot -- )
78     [ [ [ preserving ] curry ] dip ] assoc-map
79     [ cond ] curry ;
81 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
83 ! Conceptual implementation:
85 ! : pcall ( seq quots -- seq ) [ call ] 2map ;
87 MACRO: parallel-call ( quots -- )
88     [ '[ [ unclip @ ] dip [ push ] keep ] ] map concat
89     '[ V{ } clone @ nip >array ] ;
91 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
92 ! map-call and friends
93 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
95 : (make-call-with) ( quots -- quot ) 
96     [ [ keep ] curry ] map concat [ drop ] append ;
98 MACRO: map-call-with ( quots -- )
99     [ (make-call-with) ] keep length [ narray ] curry compose ;
101 : (make-call-with2) ( quots -- quot )
102     [ [ 2dup >r >r ] prepend [ r> r> ] append ] map concat
103     [ 2drop ] append ;
105 MACRO: map-call-with2 ( quots -- )
106     [
107         [ [ 2dup >r >r ] prepend [ r> r> ] append ] map concat
108         [ 2drop ] append    
109     ] keep length [ narray ] curry append ;
111 MACRO: map-exec-with ( words -- )
112     [ 1quotation ] map [ map-call-with ] curry ;
114 MACRO: construct-slots ( assoc tuple-class -- tuple ) 
115     [ new ] curry swap [
116         [ dip ] curry swap 1quotation [ keep ] curry compose
117     ] { } assoc>map concat compose ;
119 : 2quot-with ( obj seq quot1 quot2 -- seq quot1 quot2 )
120     >r pick >r with r> r> swapd with ;
122 MACRO: multikeep ( word out-indexes -- ... )
123     [
124         dup >r [ \ npick \ >r 3array % ] each
125         %
126         r> [ drop \ r> , ] each
127     ] [ ] make ;
129 : do-while ( pred body tail -- )
130     [ tuck 2slip ] dip while ; inline
132 : generate ( generator predicate -- obj )
133     '[ dup @ dup [ nip ] unless not ]
134     swap [ ] do-while ;
136 MACRO: predicates ( seq -- quot/f )
137     dup [ 1quotation [ drop ] prepend ] map
138     [ [ [ dup ] prepend ] map ] dip zip [ drop f ] suffix
139     [ cond ] curry ;
141 : %chance ( quot n -- ) 100 random > swap when ; inline