Skip to content

Instantly share code, notes, and snippets.

@desbo
Created August 6, 2015 10:22
Show Gist options
  • Save desbo/ad1deac9608406d6936c to your computer and use it in GitHub Desktop.
Save desbo/ad1deac9608406d6936c to your computer and use it in GitHub Desktop.
grid
data Grid a = Grid [[a]]
deriving Show
instance Functor Grid where
fmap f (Grid xs) = Grid (map (\ys -> map (\y -> f y) ys) xs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment