Gobelijn API documentation  - generated for commit a0cbea7
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
template-main.cpp
Go to the documentation of this file.
1 #include <iostream>
2 
3 template <typename T>
4 T muladd(T a, T b, T c);
5 
6 int main() { std::cout << muladd<int>(1, 2, 3) << std::endl; }
int main()
T muladd(T a, T b, T c)