Created
March 17, 2017 22:04
-
-
Save kalman5/28a717a415dcc41231a097ee4dbc0160 to your computer and use it in GitHub Desktop.
SumScaleTemplate
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
| template <class T> | |
| T sumScale(T a, T b, int c) { | |
| return c*(a + b); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment