Created
February 14, 2017 21:52
-
-
Save deque-blog/e92360ac951533b76747c3b30a4104f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
countNodes :: Expr -> Int | |
countNodes = cata countAlg where | |
countAlg (Op _ xs) = 1 + sum xs | |
countAlg _ = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment