]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/shuffle/shuffle.factor
core: Add the shuffler words but without primitives.
[factor.git] / basis / shuffle / shuffle.factor
index 03d3caed8be1f3233392bcd69eeb2e976330d088..bc78fd6dc88d01599f9aaf1df0bdf7e60581f8a5 100644 (file)
@@ -14,12 +14,6 @@ MACRO: shuffle-effect ( effect -- quot )
 SYNTAX: shuffle(
     ")" parse-effect suffix! \ shuffle-effect suffix! ;
 
-: tuck ( x y -- y x y ) swap over ; inline deprecated
-
 : spin ( x y z -- z y x ) swap rot ; inline deprecated
 
-: roll ( x y z t -- y z t x ) [ rot ] dip swap ; inline deprecated
-
-: -roll ( x y z t -- t x y z ) swap [ -rot ] dip ; inline deprecated
-
 : 2swap ( x y z t -- z t x y ) 2 2 mnswap ; inline