Boost logo

Boost :

From: nbecker_at_[hidden]
Date: 2001-06-07 08:58:26


This seem to be an obvious addition. It is not present in current
library that is part of gcc, at least.

template<typename T>
ostream& operator<< (ostream& os, const complex<T>& z) {
  os << '(' << real (z) << ',' << imag (z) << ')';
  return os;
}


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk