[SVN r17557]
This commit is contained in:
Jaakko Järvi
2003-02-20 15:30:48 +00:00
parent 4d4fe0010f
commit c1a28e5d81

View File

@ -97,7 +97,7 @@ tuple<A*, tuple<const A*, const B&, C>, bool, void*>
<p>
The tuple constructor takes the tuple elements as arguments.
For an <i>n</i>-element tuple, the constructor can be invoked with <i>k</i> arguments, where 0 &lt; <i>k</i> &lt;= <i>n</i>.
For an <i>n</i>-element tuple, the constructor can be invoked with <i>k</i> arguments, where 0 &lt;= <i>k</i> &lt;= <i>n</i>.
For example:
<pre><code>tuple&lt;int, double&gt;()
tuple&lt;int, double&gt;(1)