Fix tuple heading, close #5324

This commit is contained in:
Kohei Takahashi
2014-11-02 16:30:38 +09:00
parent 0a13aa5ee4
commit f3921fee95
2 changed files with 17 additions and 2 deletions

View File

@ -126,6 +126,7 @@
<dd><dl> <dd><dl>
<dt><span class="section"><a href="fusion/sequence/operator/i_o.html">I/O</a></span></dt> <dt><span class="section"><a href="fusion/sequence/operator/i_o.html">I/O</a></span></dt>
<dt><span class="section"><a href="fusion/sequence/operator/comparison.html">Comparison</a></span></dt> <dt><span class="section"><a href="fusion/sequence/operator/comparison.html">Comparison</a></span></dt>
<dt><span class="section"><a href="fusion/sequence/operator/hashing.html">Hashing</a></span></dt>
</dl></dd> </dl></dd>
</dl></dd> </dl></dd>
<dt><span class="section"><a href="fusion/container.html">Container</a></span></dt> <dt><span class="section"><a href="fusion/container.html">Container</a></span></dt>
@ -160,6 +161,7 @@
<dt><span class="section"><a href="fusion/view/reverse_view.html">reverse_view</a></span></dt> <dt><span class="section"><a href="fusion/view/reverse_view.html">reverse_view</a></span></dt>
<dt><span class="section"><a href="fusion/view/nview.html">nview</a></span></dt> <dt><span class="section"><a href="fusion/view/nview.html">nview</a></span></dt>
<dt><span class="section"><a href="fusion/view/repetitive_view.html">repetitive_view</a></span></dt> <dt><span class="section"><a href="fusion/view/repetitive_view.html">repetitive_view</a></span></dt>
<dt><span class="section"><a href="fusion/view/flatten_view.html">flatten_view</a></span></dt>
</dl></dd> </dl></dd>
<dt><span class="section"><a href="fusion/adapted.html">Adapted</a></span></dt> <dt><span class="section"><a href="fusion/adapted.html">Adapted</a></span></dt>
<dd><dl> <dd><dl>

View File

@ -23,6 +23,21 @@ As such the fusion tuple type provides a lot of functionality beyond that requir
Currently tuple is basically a synonym for __vector__, although this may be changed Currently tuple is basically a synonym for __vector__, although this may be changed
in future releases of fusion. in future releases of fusion.
[heading Header]
#include <boost/fusion/tuple.hpp>
#include <boost/fusion/include/tuple.hpp>
#include <boost/fusion/tuple/tuple.hpp>
#include <boost/fusion/tuple/tuple_fwd.hpp>
#include <boost/fusion/include/tuple_fwd.hpp>
// for creation function
#include <boost/fusion/tuple/tuple_tie.hpp>
#include <boost/fusion/include/tuple_tie.hpp>
#include <boost/fusion/tuple/make_tuple.hpp>
#include <boost/fusion/include/make_tuple.hpp>
[heading Synopsis] [heading Synopsis]
template< template<
typename T1 = __unspecified__, typename T1 = __unspecified__,
@ -31,8 +46,6 @@ in future releases of fusion.
typename TN = __unspecified__> typename TN = __unspecified__>
class tuple; class tuple;
/tuple.hpp>
[section Construction] [section Construction]
[heading Description] [heading Description]