Ice Sheet System Model  4.18
Code documentation
Exchange.h
Go to the documentation of this file.
1 #ifndef _EXCHANGE_H_
2 #define _EXCHANGE_H_
3 
4 template<class T> inline void Exchange(T &a,T &b){T c=a;a=b;b=c;}
5 
6 #endif
Exchange
void Exchange(T &a, T &b)
Definition: Exchange.h:4