Guest User

Untitled

a guest
Apr 25th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. zipWith' f (a0, b0, c0) (a1, b1, c1) = (f a0 a1, f b0 b1, f c0 c1)
  2.  
  3. map' f = over each f
  4. foldl1' f = foldl1Of each f
Add Comment
Please, Sign In to add comment