Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const dcovector &vec) |
|
Definition at line 66 of file dcovector-io.hpp. References dcovector::L.
00067 { 00068 for(long i=0; i<vec.L; i++){ 00069 s << " " << vec(i) << std::endl; 00070 } 00071 00072 return s; 00073 } |