remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / extra / lists / lazy / lazy-tests.factor
blob5749f94364de35e3d2b0b2694bdbadeb1724dfe9
1 ! Copyright (C) 2006 Matthew Willis and Chris Double.
2 ! See http://factorcode.org/license.txt for BSD license.
4 USING: lists lists.lazy tools.test kernel math io sequences ;
5 IN: lists.lazy.tests
7 [ { 1 2 3 4 } ] [
8   { 1 2 3 4 } >list list>array
9 ] unit-test
11 [ { { 1 4 } { 1 5 } { 2 4 } { 2 5 } { 3 4 } { 3 5 } } ] [
12   { 1 2 3 } >list { 4 5 } >list 2list lcartesian-product* list>array
13 ] unit-test
15 [ { { 1 4 } { 1 5 } { 2 4 } { 2 5 } { 3 4 } { 3 5 } } ] [
16   { 1 2 3 } >list { 4 5 } >list lcartesian-product list>array
17 ] unit-test
19 [ { 5 6 6 7 7 8 } ] [ 
20   { 1 2 3 } >list { 4 5 } >list 2list [ first2 + ] lcomp list>array
21 ] unit-test
23 [ { 5 6 7 8 } ] [ 
24   { 1 2 3 } >list { 4 5 } >list 2list { [ first odd? ] } [ first2 + ] lcomp* list>array
25 ] unit-test
27 [ { 4 5 6 } ] [ 
28     3 { 1 2 3 } >list [ + ] lazy-map-with list>array
29 ] unit-test