Initial commit
This commit is contained in:
47
Lib/Include/CML/vector/vector_print.h
Normal file
47
Lib/Include/CML/vector/vector_print.h
Normal file
@@ -0,0 +1,47 @@
|
||||
/* -*- C++ -*- ------------------------------------------------------------
|
||||
|
||||
Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/
|
||||
|
||||
The Configurable Math Library (CML) is distributed under the terms of the
|
||||
Boost Software License, v1.0 (see cml/LICENSE for details).
|
||||
|
||||
*-----------------------------------------------------------------------*/
|
||||
/** @file
|
||||
* @brief
|
||||
*/
|
||||
|
||||
#ifndef vector_print_h
|
||||
#define vector_print_h
|
||||
|
||||
#include <iostream>
|
||||
|
||||
namespace cml {
|
||||
|
||||
/** Output a vector to a std::ostream. */
|
||||
template<typename E, class AT > inline std::ostream&
|
||||
operator<<(std::ostream& os, const vector<E,AT>& v)
|
||||
{
|
||||
os << v[0];
|
||||
for (size_t i = 1; i < v.size(); ++i) {
|
||||
os << " " << v[i];
|
||||
}
|
||||
return os;
|
||||
}
|
||||
|
||||
/** Output a vector expression to a std::ostream. */
|
||||
template< class XprT > inline std::ostream&
|
||||
operator<<(std::ostream& os, const et::VectorXpr<XprT>& v)
|
||||
{
|
||||
os << v[0];
|
||||
for (size_t i = 1; i < v.size(); ++i) {
|
||||
os << " " << v[i];
|
||||
}
|
||||
return os;
|
||||
}
|
||||
|
||||
} // namespace cml
|
||||
|
||||
#endif
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// vim:ft=cpp
|
||||
Reference in New Issue
Block a user