Show
Ignore:
Timestamp:
05/31/07 00:44:52 (18 months ago)
Author:
moritz
Message:

fixed looping each() with empty arg list, introduced in previous commit

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Prim/List.hs

    r16572 r16573  
    3232op0Zip' :: [[Val]] -> [[Val]] 
    3333op0Zip' lists | any null lists = [] 
     34op0Zip' []    = [] 
    3435op0Zip' lists = (map zipFirst lists):(op0Zip' (map zipRest lists)) 
    3536    where