👨💻 👩💻 |
MA 792-002 Special Topics: C/C++/Python for Mathematicians Spring 2018 SAS Hall 2106, MW 16:30pm-17:45pm |
Syllabus | People | C | Python | C++ | Resources |
Current Announcements
|
Peoples' home pages: Erich Kaltofen. C programs for the course
Python programs for the course; Mark's original github
C++ programs for the course
|
|
template < typename T >
ostream& operator<<(ostream& out, const T& t) {out << static_cast<int>(t); return out;}
but not when using class in place of typename for the category of the template parameter:
template < class T >
ostream& operator<<(ostream& out, const T& t) {out << static_cast<int>(t); return out;}
©2011, 2018 Erich Kaltofen.