Guest User

Untitled

a guest
Jan 12th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. instance Functor BintreeL where
  2. fmap f (Bin a l r) = Bin (f a) (fmap f l) (fmap f r)
  3. fmap f (Leaf a) = Leaf (f a)
Add Comment
Please, Sign In to add comment