From: Lisa Date: Tue, 4 Aug 2015 19:56:18 +0000 (-0500) Subject: Documentation of input parameters for function add_range added. X-Git-Tag: v8.4.0-rc2~682^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01f652e2882db05e6a561887dd59e1d634615144;p=dealii.git Documentation of input parameters for function add_range added. --- diff --git a/include/deal.II/base/index_set.h b/include/deal.II/base/index_set.h index 8543b5ef00..2ae063f39a 100644 --- a/include/deal.II/base/index_set.h +++ b/include/deal.II/base/index_set.h @@ -138,6 +138,8 @@ public: /** * Add the half-open range $[\text{begin},\text{end})$ to the set of indices * represented by this class. + * @param[in] begin The first element of the range to be added. + * @param[in] end The past-the-end element of the range to be added. */ void add_range (const size_type begin, const size_type end); @@ -145,6 +147,7 @@ public: /** * Add an individual index to the set of indices. */ + void add_index (const size_type index); /**