]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/shuffle/shuffle.factor
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / basis / shuffle / shuffle.factor
index d375ec9c207b3c8051a8957dd6a128c984893583..6cae048d2764290f7ca9371725068f0fd894f95e 100644 (file)
@@ -24,14 +24,6 @@ MACRO: shuffle-effect ( effect -- )
 
 : 2swap ( x y z t -- z t x y ) 2 2 mnswap ; inline
 
-: nipd ( a b c -- b c ) rot drop ; inline
-
-: 3nip ( a b c d -- d ) 3 nnip ; inline
-
-: 4nip ( a b c d e -- e ) 4 nnip ; inline
-
 : 4dup ( a b c d -- a b c d a b c d ) 4 ndup ; inline
 
 : 4drop ( a b c d -- ) 3drop drop ; inline
-
-: tuckd ( x y z -- z x y z ) 2 ntuck ; inline