31 #ifndef COMMON_STD_XUTILITY_H 32 #define COMMON_STD_XUTILITY_H 34 #include "common/algorithm.h" 35 #include "common/util.h" 40 void reverse(T *First, T *Last) {
41 for (--Last; First < Last; ++First, --Last) {
void SWAP(T &a, T &b)
Definition: util.h:84
Definition: algorithm.h:37