]> gitweb.factorcode.org Git - factor.git/blob - extra/combinators/extras/extras.factor
ec0da1bfc1cac725230b802f5a7312f6c10d9657
[factor.git] / extra / combinators / extras / extras.factor
1 ! Copyright (C) 2013 Doug Coleman, John Benediktsson.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: arrays assocs combinators combinators.smart
4 generalizations kernel math math.order namespaces quotations
5 sequences sequences.generalizations sequences.private
6 stack-checker.transforms system words ;
7 IN: combinators.extras
8
9 : once ( quot -- ) call ; inline
10 : twice ( quot -- ) dup [ call ] dip call ; inline
11 : thrice ( quot -- ) dup dup [ call ] 2dip [ call ] dip call ; inline
12 : forever ( quot -- ) [ t ] compose loop ; inline
13
14 MACRO: cond-case ( assoc -- quot )
15     [
16         dup callable? not [
17             [ first [ dup ] prepose ]
18             [ second [ drop ] prepose ] bi 2array
19         ] when
20     ] map [ cond ] curry ;
21
22 MACRO: cleave-array ( quots -- quot )
23     [ '[ _ cleave ] ] [ length '[ _ narray ] ] bi compose ;
24
25 : 3bi* ( u v w x y z p q -- )
26     [ 3dip ] dip call ; inline
27
28 : 3bi@ ( u v w x y z quot -- )
29     dup 3bi* ; inline
30
31 : 4bi ( w x y z p q -- )
32     [ 4keep ] dip call ; inline
33
34 : 4bi* ( s t u v w x y z p q -- )
35     [ 4dip ] dip call ; inline
36
37 : 4tri* ( o p q r  s t u v  w x y z  p q r -- )
38     [ 8 ndip ] 2dip
39     [ 4dip ] dip
40     call ; inline
41
42 : 4bi@ ( s t u v  w x y z  quot -- )
43     dup 4bi* ; inline
44
45 : 4tri@ ( a b c d  e f g h  i j k l  quot -- )
46     dup dup 4tri* ; inline
47
48 : 4tri ( w x y z  p q r -- )
49     [ [ 4keep ] dip 4keep ] dip call ; inline
50
51 : 4quad ( w x y z  p q r s -- )
52     [ [ [ 4keep ] dip 4keep ] dip 4keep ] dip call ; inline
53
54 : quad* ( w x y z p q r s -- ) [ [ [ 3dip ] dip 2dip ] dip dip ] dip call ; inline
55
56 : quad@ ( w x y z quot -- ) dup dup dup quad* ; inline
57
58 : plox ( ... x/f quot: ( ... x -- ... y ) -- ... y/f )
59     dupd when ; inline
60
61 MACRO: smart-plox ( true -- quot )
62     [ inputs [ 1 - [ and ] n*quot ] keep ] keep swap
63     '[ _ _ [ _ ndrop f ] smart-if ] ;
64
65 : throttle ( quot millis -- quot' )
66     1,000,000 * '[
67         _ nano-count { 0 } 2dup first-unsafe _ + >=
68         [ 0 swap set-nth-unsafe call ] [ 3drop ] if
69     ] ; inline
70
71 : swap-when ( x y quot: ( x -- n ) quot: ( n n -- ? ) -- x' y' )
72     '[ _ _ 2dup _ bi@ @ [ swap ] when ] call ; inline
73
74
75 ! ?1arg-result-falsify
76
77 : 1falsify ( obj/f -- obj/f ) ; inline
78 : 2falsify ( obj1 obj2 -- obj1/f obj2/f ) 2dup and [ 2drop f f ] unless ; inline
79 : 3falsify ( obj1 obj2 obj3 -- obj1/f obj2/f obj3/f ) 3dup and and [ 3drop f f f ] unless ; inline
80
81 MACRO: n-and ( n -- quot )
82     1 [-] [ and ] n*quot ;
83
84 MACRO: n*obj ( n obj -- quot )
85     1quotation n*quot ;
86
87 MACRO:: n-falsify ( n -- quot )
88     [ n ndup n n-and [ n ndrop n f n*obj ] unless ] ;
89
90 ! plox
91 : ?1res ( ..a obj/f quot -- ..b )
92     dupd when ; inline
93
94 ! when both args are true, call quot. otherwise dont
95 : ?2res ( ..a obj1 obj2 quot: ( obj1 obj2 -- ? ) -- ..b )
96     [ 2dup and ] dip [ 2drop f ] if ; inline
97
98 ! try the quot, keep the original arg if quot is true
99 : ?1arg ( obj quot: ( obj -- ? ) -- obj/f )
100     [ ?1res ] keepd '[ _ ] [ f ] if ; inline
101
102 : ?2arg ( obj1 obj2 quot: ( obj1 obj2 -- ? ) -- obj1/f obj2/f )
103     [ ?2res ] 2keepd '[ _ _ ] [ f f ] if ; inline
104
105 <<
106 : alist>quot* ( default assoc -- quot )
107     [ rot \ if* 3array append [ ] like ] assoc-each ;
108
109 : cond*>quot ( assoc -- quot )
110     [ dup pair? [ [ drop ] prepend [ t ] swap 2array ] unless ] map
111     reverse! [ no-cond ] swap alist>quot* ;
112
113 DEFER: cond*
114 \ cond* [ cond*>quot ] 1 define-transform
115 \ cond* t "no-compile" set-word-prop
116 >>
117 : cond* ( assoc -- )
118     [ dup callable? [ drop t ] [ first call ] if ] map-find
119     [ dup callable? [ nip call ] [ second call ] if ]
120     [ no-cond ] if* ;
121
122 MACRO: chain ( quots -- quot )
123     <reversed> [ ] [ swap '[ [ @ @ ] [ f ] if* ] ] reduce ;
124
125 : with-output-variable ( value variable quot -- value )
126     over [ get ] curry compose with-variable ; inline
127
128 : loop1 ( ..a quot: ( ..a -- ..a obj ? ) -- ..a obj )
129     [ call ] keep '[ drop _ loop1 ] when ; inline recursive
130
131
132 : keep-1up ( quot -- quot ) keep 1 2 0 nrotated ; inline
133 : keep-2up ( quot -- quot ) keep 2 3 0 nrotated ; inline
134 : keep-3up ( quot -- quot ) keep 3 4 0 nrotated ; inline
135
136 : 2keep-1up ( quot -- quot ) 2keep 1 3 0 nrotated ; inline
137 : 2keep-2up ( quot -- quot ) 2keep 2 4 0 nrotated ; inline
138 : 2keep-3up ( quot -- quot ) 2keep 3 5 0 nrotated ; inline
139
140 : 3keep-1up ( quot -- quot ) 3keep 1 4 0 nrotated ; inline
141 : 3keep-2up ( quot -- quot ) 3keep 2 5 0 nrotated ; inline
142 : 3keep-3up ( quot -- quot ) 3keep 3 6 0 nrotated ; inline
143
144 ! d is dummy, o is object to save notation space
145 : dip-1up  ( ..a d quot: ( ..a -- ..b o d ) -- ..b d o )
146     dip swap ; inline
147 : dip-2up  ( ..a d quot: ( ..a -- ..b o1 o2 d ) -- ..b d o1 o2 )
148     dip rot rot ; inline
149
150 : 2dip-1up ( ..a d1 d2 quot: ( ..a -- ..b o d1 d2 ) -- ..b d1 d2 o )
151     2dip rot ; inline
152 : 2dip-2up ( ..a d1 d2 quot: ( ..a -- ..b o1 o2 d1 d2 ) -- ..b d1 d2 o1 o2 )
153     2dip roll roll ; inline
154
155 : 3dip-1up ( ..a d1 d2 d3 quot: ( ..a -- ..b o d1 d2 d3 ) -- ..b d1 d2 d3 o )
156     3dip roll ; inline
157 : 3dip-2up ( ..a d1 d2 d3 quot: ( ..a -- ..b o1 o2 d1 d2 d3 ) -- ..b d1 d2 d3 o1 o2 )
158     3dip 2 5 0 nrotated ; inline
159 : 3dip-3up ( ..a d1 d2 d3 quot: ( ..a -- ..b o1 o2 o3 d1 d2 d3 ) -- ..b d1 d2 d3 o1 o2 o3 )
160     3dip 3 6 0 nrotated ; inline
161
162
163 : 2craft-1up ( ..a quot1: ( ..a -- ..b o1 ) quot2: ( ..b -- ..c o2 ) -- ..c o1 o2 )
164     [ call ] dip [ dip-1up ] call ; inline
165
166 : 3craft-1up ( ..a quot1: ( ..a -- ..b o1 ) quot2: ( ..b -- ..c o2 ) quot3: ( ..c -- ..d o3 ) -- ..d o1 o2 o3 )
167     [ call ] 2dip [ dip-1up ] dip [ 2dip-1up ] call ; inline
168
169 : 4craft-1up ( ..a quot1: ( ..a -- ..b o1 ) quot2: ( ..b -- ..c o2 ) quot3: ( ..c -- ..d o3 ) quot4: ( ..d -- ..e o4 ) -- ..e o1 o2 o3 o4 )
170     [ call ] 3dip [ dip-1up ] 2dip [ 2dip-1up ] dip [ 3dip-1up ] call ; inline
171
172 : 3and ( a b c -- ? ) and and ; inline
173 : 4and ( a b c d -- ? ) and and and ; inline
174
175 : 3or ( a b c -- ? ) or or ; inline
176 : 4or ( a b c d -- ? ) or or or ; inline
177
178 ! The kept values are on the bottom of the stack
179 MACRO: keep-under ( quot -- quot' )
180     dup outputs 1 + '[ _ keep 1 _ 0 -nrotated ] ;
181
182 MACRO: 2keep-under ( quot -- quot' )
183     dup outputs 2 + '[ _ 2keep 2 _ 0 -nrotated ] ;
184
185 MACRO: 3keep-under ( quot -- quot' )
186     dup outputs 3 + '[ _ 3keep 3 _ 0 -nrotated ] ;
187
188 MACRO: 4keep-under ( quot -- quot' )
189     dup outputs 4 + '[ _ 4keep 4 _ 0 -nrotated ] ;
190
191 ! for use with assoc-map etc
192 : 1temp1d ( quot: ( a b c -- d e f ) -- quot ) '[ swap @ swap ] ; inline
193 : 1temp2d ( quot: ( a b c -- d e f ) -- quot ) '[ rot @ -rot ] ; inline
194 : 2temp2d ( quot: ( a b c d -- e f g h ) -- quot ) '[ 2 4 0 nrotated @ 2 4 0 -nrotated ] ; inline