Changes between Version 29 and Version 30 of ViewPatterns
- Timestamp:
- 07/23/07 07:29:01 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ViewPatterns
v29 v30 237 237 {{{ 238 238 length [] = [] 239 length ( x : length -> xs) = x+ xs239 length (_ : length -> xs) = 1 + xs 240 240 241 241 map f [] = [] 242 map f (x : map f -> xs) = x : xs242 map f (x : map f -> xs) = f x : xs 243 243 244 244 foldr f z [] = z
