Skip to content

Instantly share code, notes, and snippets.

@igalshilman
Created December 27, 2015 16:12
Show Gist options
  • Save igalshilman/57ea3becff3d9d5e4476 to your computer and use it in GitHub Desktop.
Save igalshilman/57ea3becff3d9d5e4476 to your computer and use it in GitHub Desktop.
(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