Last active
March 1, 2022 01:57
-
-
Save aniketbiprojit/58e2f6ce7314a966d54580696e328b51 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
// 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