Skip to content

Instantly share code, notes, and snippets.

@aniketbiprojit
Last active March 1, 2022 01:57
Show Gist options
  • Save aniketbiprojit/58e2f6ce7314a966d54580696e328b51 to your computer and use it in GitHub Desktop.
Save aniketbiprojit/58e2f6ce7314a966d54580696e328b51 to your computer and use it in GitHub Desktop.
// https://medium.com/@aniketbiprojit/c-expression-templates-for-optimized-compile-time-evaluation-aff817de04ee
double square(int elem){
return elem*elem;
}
double square(double elem){
return elem*elem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment