#include "marVector.h"
#include <assert.h>
#include <math.h>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const marVector &v) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const marVector & | v | |||
) |
Definition at line 83 of file marVector.cpp.
References marVector::size().
00084 { 00085 int i; 00086 for(i=0;i < v.size();i++) 00087 { 00088 os << " " << v(i); 00089 } 00090 os <<"\n"; 00091 return(os); 00092 }