From 1a5759a89db0d941fbd25c2490d01944ef001925 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 6 May 2020 09:41:02 -0600 Subject: [PATCH] Augment the documentation of operator<< for Vector. --- include/deal.II/lac/vector.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- 2.39.5