Changeset 1437 for trunk/yat/utility/VectorBase.h
- Timestamp:
- Aug 25, 2008, 7:55:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/VectorBase.h
r1275 r1437 12 12 Copyright (C) 2008 Peter Johansson 13 13 14 This file is part of the yat library, http:// trac.thep.lu.se/trac/yat14 This file is part of the yat library, http://dev.thep.lu.se/trac/yat 15 15 16 16 The yat library is free software; you can redistribute it and/or … … 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.