Last active
December 22, 2015 14:09
-
-
Save congdanhqx-zz/6484001 to your computer and use it in GitHub Desktop.
This file contains 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 identifier> | |
return_data_type function_name(param_type param_name, ...) { | |
// function declaration | |
return result_value; | |
} | |
template <typename identifier> | |
return_data_type function_name(param_type param_name, ...) { | |
// function declaration | |
return result_value; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment