Bohtvaroh

Blogger - CRWFPM - filtering

Dec 25th, 2012
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (defn filtering [pred]
  2.   (fn [f1]
  3.     (fn [result input]
  4.       (if (pred input)
  5.         (f1 result input)
  6.         result))))
Advertisement
Add Comment
Please, Sign In to add comment