From df1dad5cb66ecec06bc4b81c6f3e7f655eeb6c14 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Mon, 27 Jul 2009 20:46:40 +0000 Subject: [PATCH] Merge an unordered documentation change that I missed before. Merged revisions 54914 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r54914 | danieljames | 2009-07-12 19:03:35 +0100 (Sun, 12 Jul 2009) | 1 line Add constructors to the methods for controlling bucket size in unordered containers. ........ [SVN r55211] --- doc/buckets.qbk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/buckets.qbk b/doc/buckets.qbk index 92695ad0..1303708f 100644 --- a/doc/buckets.qbk +++ b/doc/buckets.qbk @@ -115,6 +115,15 @@ or close to the hint - unless your hint is unreasonably small or large. [table Methods for Controlling Bucket Size [[Method] [Description]] + [ + [`X(size_type n)`] + [Construct an empty container with at least `n` buckets (`X` is the container type).] + ] + [ + [`X(InputIterator i, InputIterator j, size_type n)`] + [Construct an empty container with at least `n` buckets and insert elements + from the range \[`i`, `j`) (`X` is the container type).] + ] [ [`float load_factor() const`] [The average number of elements per bucket.]