2013-04-17 13:27:22 -04:00
|
|
|
! Copyright (C) 2013 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license
|
2018-02-15 10:14:56 -05:00
|
|
|
USING: arrays sequences sequences.snipped tools.test ;
|
2013-04-17 13:27:22 -04:00
|
|
|
|
2017-06-01 17:59:35 -04:00
|
|
|
{ { 0 1 2 5 6 } } [ 3 5 7 <iota> <snipped> >array ] unit-test
|
|
|
|
{ { 0 1 2 } } [ 3 10 7 <iota> <snipped> >array ] unit-test
|
|
|
|
{ { 6 } } [ -1 5 7 <iota> <snipped> >array ] unit-test
|
|
|
|
{ { } } [ -1 10 7 <iota> <snipped> >array ] unit-test
|