fix a couple typos in docs
[factor/jcg.git] / basis / shuffle / shuffle.factor
blobb195e4abf903bd261d199d61741af8a4577cc9b7
1 ! Copyright (C) 2007 Chris Double, Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel generalizations ;
5 IN: shuffle
7 : 2swap ( x y z t -- z t x y ) 2 2 mnswap ; inline
9 : nipd ( a b c -- b c ) rot drop ; inline
11 : 3nip ( a b c d -- d ) 3 nnip ; inline
13 : 4nip ( a b c d e -- e ) 4 nnip ; inline
15 : 4dup ( a b c d -- a b c d a b c d ) 4 ndup ; inline
17 : 4drop ( a b c d -- ) 3drop drop ; inline
19 : tuckd ( x y z -- z x y z ) 2 ntuck ; inline