Changeset 1369 for branches/0.4-stable/yat
- Timestamp:
- Jul 11, 2008, 6:10:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.4-stable/yat/utility/VectorBase.h
r1275 r1369 249 249 /** 250 250 \brief The output operator for the VectorBase class. 251 */ 252 std::ostream& operator<<(std::ostream&, const VectorBase&); 251 252 Elements in VectorBase \a v are sent to ostream \a s and 253 separated with the fill character of stream \a s, s.fill(). If 254 you, for example, want to print the VectorBase \a v with the 255 elements separated by a ':', you do so by: 256 \verbatim 257 s << setfill(':') << v; 258 \endverbatim 259 */ 260 std::ostream& operator<<(std::ostream& s, const VectorBase& v); 253 261 254 262 }}} // of namespace utility, yat, and theplu
Note: See TracChangeset
for help on using the changeset viewer.