Skip to content

Instantly share code, notes, and snippets.

@zackthehuman
Created December 17, 2015 23:47
Show Gist options
  • Save zackthehuman/6927901221b00c4cc351 to your computer and use it in GitHub Desktop.
Save zackthehuman/6927901221b00c4cc351 to your computer and use it in GitHub Desktop.
bit function constexpr
#include <iostream>
constexpr auto bit(std::size_t index) {
return 1ULL << index;
}
int main() {
std::cout << bit(0) << "\n" << bit(1) << "\n" << bit(5) << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment