]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/lists/lazy/lazy.factor
Update documentation for stricter vocabulary search path semantics
[factor.git] / basis / lists / lazy / lazy.factor
index 64a3f099a0ed5056ecfe327aa3482fa38dc4e905..49aee471bf8f407feabc8f6cc6757d3f0c12515f 100644 (file)
@@ -178,12 +178,6 @@ M: lazy-filter nil? ( lazy-filter -- bool )
         ] if
     ] if ;
 
-: list>vector ( list -- vector )
-    [ [ , ] leach ] V{ } make ;
-
-: list>array ( list -- array )
-    [ [ , ] leach ] { } make ;
-
 TUPLE: lazy-append list1 list2 ;
 
 C: <lazy-append> lazy-append