From: Wolfgang Bangerth Date: Wed, 6 May 2020 15:41:02 +0000 (-0600) Subject: Augment the documentation of operator<< for Vector. X-Git-Tag: v9.2.0-rc1~95^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10046%2Fhead;p=dealii.git Augment the documentation of operator<< for Vector. --- diff --git a/include/deal.II/lac/vector.h b/include/deal.II/lac/vector.h index 3893218ab1..e9dfe66aaf 100644 --- a/include/deal.II/lac/vector.h +++ b/include/deal.II/lac/vector.h @@ -1365,7 +1365,11 @@ swap(Vector &u, Vector &v) /** - * Output operator writing a vector to a stream. + * Output operator writing a vector to a stream. This operator outputs the + * elements of the vector one by one, with a space between entries. Each entry + * is formatted according to the flags set on the output stream. + * + * @relatesalso Vector */ template inline std::ostream & @@ -1389,6 +1393,7 @@ operator<<(std::ostream &out, const Vector &v) /** * Declare dealii::Vector< Number > as serial vector. * + * @relatesalso Vector * @author Uwe Koecher, 2017 */ template