! Copyright (C) 2013 John Benediktsson ! See http://factorcode.org/license.txt for BSD license USING: arrays sequences tools.test ; IN: sequences.shifted { { 1 2 3 7 } } [ 4 iota -1 7 >array ] unit-test { { 7 0 1 2 } } [ 4 iota 1 7 >array ] unit-test { { 0 1 2 3 } } [ 4 iota 0 f >array ] unit-test { { f f f f } } [ 4 iota 4 f >array ] unit-test { { f f f f } } [ 4 iota -4 f >array ] unit-test