2013-03-24 12:55:44 -04:00
|
|
|
! Copyright (C) 2013 Doug Coleman, John Benediktsson.
|
2013-03-07 17:11:01 -05:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2013-05-14 16:44:14 -04:00
|
|
|
USING: arrays combinators combinators.smart fry generalizations
|
|
|
|
kernel macros math quotations sequences
|
|
|
|
sequences.generalizations ;
|
2013-03-07 17:11:01 -05:00
|
|
|
IN: combinators.extras
|
|
|
|
|
|
|
|
: once ( quot -- ) call ; inline
|
|
|
|
: twice ( quot -- ) dup [ call ] dip call ; inline
|
|
|
|
: thrice ( quot -- ) dup dup [ call ] 2dip [ call ] dip call ; inline
|
2013-03-24 12:55:44 -04:00
|
|
|
|
|
|
|
MACRO: cond-case ( assoc -- )
|
|
|
|
[
|
|
|
|
dup callable? not [
|
|
|
|
[ first [ dup ] prepose ]
|
|
|
|
[ second [ drop ] prepose ] bi 2array
|
|
|
|
] when
|
|
|
|
] map [ cond ] curry ;
|
2013-03-24 22:34:39 -04:00
|
|
|
|
|
|
|
MACRO: cleave-array ( quots -- )
|
|
|
|
[ '[ _ cleave ] ] [ length '[ _ narray ] ] bi compose ;
|
2013-05-01 21:34:27 -04:00
|
|
|
|
|
|
|
: 3bi* ( u v w x y z p q -- )
|
|
|
|
[ 3dip ] dip call ; inline
|
|
|
|
|
|
|
|
: 3bi@ ( u v w x y z quot -- )
|
|
|
|
dup 3bi* ; inline
|
2013-05-14 12:40:40 -04:00
|
|
|
|
|
|
|
: keepd ( ..a x y quot: ( ..a x y -- ..b ) -- ..b x )
|
|
|
|
2keep drop ; inline
|
2013-05-14 16:44:14 -04:00
|
|
|
|
|
|
|
: plox ( ... x/f quot: ( ... x -- ... ) -- ... )
|
|
|
|
dupd when ; inline
|
|
|
|
|
|
|
|
MACRO: smart-plox ( true -- )
|
|
|
|
[ inputs [ 1 - [ and ] n*quot ] keep ] keep swap
|
|
|
|
'[ _ _ [ _ ndrop f ] smart-if ] ;
|