Created
December 27, 2015 16:12
-
-
Save igalshilman/57ea3becff3d9d5e4476 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
| (defn base->base | |
| [input-bit-width output-bit-width] | |
| (comp | |
| (number->bits input-bit-width) | |
| (partition-all output-bit-width) | |
| (map bits->number))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment