mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-29 01:03:45 +00:00
write array items
This commit is contained in:
parent
a479b3c242
commit
2e71fabb24
29 changed files with 376 additions and 103 deletions
|
@ -1,6 +1,6 @@
|
|||
.. _sprout-array-array:
|
||||
###############################################################################
|
||||
Class template array
|
||||
array
|
||||
###############################################################################
|
||||
|
||||
.. toctree::
|
||||
|
@ -111,10 +111,9 @@ type definition
|
|||
======================================== =============================================================================== =======================================
|
||||
reference T&
|
||||
const_reference T const&
|
||||
iterator *implementation-defined*, convertible to const_iterator,
|
||||
**ConstexprRandomAccessIterator** convertible to pointer
|
||||
const_iterator *implementation-defined*, convertible to const_pointer
|
||||
**ConstexprRandomAccessIterator**
|
||||
iterator **ConstexprRandomAccessIterator** convertible to const_iterator,
|
||||
convertible to pointer
|
||||
const_iterator **ConstexprRandomAccessIterator** convertible to const_pointer
|
||||
size_type std::size_t
|
||||
difference_type std::ptrdiff_t
|
||||
value_type T
|
||||
|
@ -138,6 +137,15 @@ function
|
|||
:doc:`(initializer) <./initializer->`
|
||||
======================================== ===============================================================================
|
||||
|
||||
construct/copy/destroy
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
======================================== ===============================================================================
|
||||
function
|
||||
======================================== ===============================================================================
|
||||
:doc:`operator= <./operator-assign>`
|
||||
======================================== ===============================================================================
|
||||
|
||||
modifiers
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -8,9 +8,12 @@ Sprout.Array
|
|||
|
||||
array/index
|
||||
|
||||
Classes
|
||||
Description
|
||||
========================================
|
||||
|
||||
Classes
|
||||
----------------------------------------
|
||||
|
||||
======================================== ===============================================================================
|
||||
class
|
||||
======================================== ===============================================================================
|
||||
|
@ -18,13 +21,65 @@ class
|
|||
======================================== ===============================================================================
|
||||
|
||||
Non-member functions
|
||||
========================================
|
||||
----------------------------------------
|
||||
|
||||
generators
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
============================================================ ===============================================================================
|
||||
function
|
||||
============================================================ ===============================================================================
|
||||
:doc:`to_array <./to_array>`
|
||||
:doc:`make_array <./make_array>`
|
||||
:doc:`make_common_array <./make_common_array>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
specialized algorithms
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
======================================== ===============================================================================
|
||||
function
|
||||
======================================== ===============================================================================
|
||||
:doc:`swap <./swap>`
|
||||
:doc:`to_array <./to_array>`
|
||||
======================================== ===============================================================================
|
||||
|
||||
comparisons
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
============================================================ ===============================================================================
|
||||
function
|
||||
============================================================ ===============================================================================
|
||||
:doc:`operator== <./operator-equal_to>`
|
||||
:doc:`operator!= <./operator-not_equal_to>`
|
||||
:doc:`operator< <./operator-less>`
|
||||
:doc:`operator> <./operator-greater>`
|
||||
:doc:`operator<= <./operator-less_equal>`
|
||||
:doc:`operator>= <./operator-greater_equal>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
Tuple interface
|
||||
----------------------------------------
|
||||
|
||||
============================================================ ===============================================================================
|
||||
matafunction
|
||||
============================================================ ===============================================================================
|
||||
:doc:`std::tuple_size <./std-tuple_size>`
|
||||
:doc:`std::tuple_element <./std-tuple_element>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
============================================================ ===============================================================================
|
||||
function
|
||||
============================================================ ===============================================================================
|
||||
:doc:`tuple_get <./tuple_get>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
Hash support
|
||||
----------------------------------------
|
||||
|
||||
======================================== ===============================================================================
|
||||
function
|
||||
======================================== ===============================================================================
|
||||
:doc:`hash_value <./hash_value>`
|
||||
======================================== ===============================================================================
|
||||
|
||||
Header
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="swap" href="swap.html" />
|
||||
<link rel="prev" title="fill" href="fill.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -170,7 +170,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="operator[]" href="operator-subscript.html" />
|
||||
<link rel="prev" title="empty" href="empty.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -160,7 +160,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="back" href="data.html" />
|
||||
<link rel="prev" title="front" href="front.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="end" href="end.html" />
|
||||
<link rel="prev" title="swap" href="swap.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="Sprout.Algorithm" href="../../algorithm/index.html" />
|
||||
<link rel="prev" title="back" href="data.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="cbegin" href="cend.html" />
|
||||
<link rel="prev" title="rend" href="rend.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="crbegin" href="crbegin.html" />
|
||||
<link rel="prev" title="cbegin" href="cbegin.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="crend" href="crend.html" />
|
||||
<link rel="prev" title="cbegin" href="cend.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="size" href="size.html" />
|
||||
<link rel="prev" title="crbegin" href="crbegin.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="back" href="c_array.html" />
|
||||
<link rel="prev" title="back" href="back.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="at" href="at.html" />
|
||||
<link rel="prev" title="max_size" href="max_size.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="rbegin" href="rbegin.html" />
|
||||
<link rel="prev" title="begin" href="begin.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="assign" href="assign.html" />
|
||||
<link rel="prev" title="operator=" href="operator-assign.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -170,7 +170,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="back" href="back.html" />
|
||||
<link rel="prev" title="operator[]" href="operator-subscript.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
||||
<title>Class template array — Sprout v1.0 documentation</title>
|
||||
<title>array — Sprout v1.0 documentation</title>
|
||||
<link rel="stylesheet" href="../../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../../_static/pygments.css" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
|
@ -47,12 +47,13 @@
|
|||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference external" href="#">Class template array</a><ul>
|
||||
<li><a class="reference external" href="#">array</a><ul>
|
||||
<li><a class="reference external" href="#interface">Interface</a></li>
|
||||
<li><a class="reference external" href="#description">Description</a><ul>
|
||||
<li><a class="reference external" href="#member-types">Member types</a></li>
|
||||
<li><a class="reference external" href="#member-functions">Member functions</a><ul>
|
||||
<li><a class="reference external" href="#initializer">(initializer)</a></li>
|
||||
<li><a class="reference external" href="#construct-copy-destroy">construct/copy/destroy</a></li>
|
||||
<li><a class="reference external" href="#modifiers">modifiers</a></li>
|
||||
<li><a class="reference external" href="#iterators">iterators</a></li>
|
||||
<li><a class="reference external" href="#capacity">capacity</a></li>
|
||||
|
@ -98,8 +99,8 @@
|
|||
<div class="bodywrapper">
|
||||
<div class="body">
|
||||
|
||||
<div class="section" id="class-template-array">
|
||||
<h1>Class template array<a class="headerlink" href="#class-template-array" title="Permalink to this headline">¶</a></h1>
|
||||
<div class="section" id="array">
|
||||
<h1>array<a class="headerlink" href="#array" title="Permalink to this headline">¶</a></h1>
|
||||
<div class="section" id="interface">
|
||||
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span> <span class="o"><</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N</span><span class="o">></span>
|
||||
|
@ -197,14 +198,12 @@
|
|||
<td> </td>
|
||||
</tr>
|
||||
<tr><td>iterator</td>
|
||||
<td><em>implementation-defined</em>,
|
||||
<strong>ConstexprRandomAccessIterator</strong></td>
|
||||
<td><strong>ConstexprRandomAccessIterator</strong></td>
|
||||
<td>convertible to const_iterator,
|
||||
convertible to pointer</td>
|
||||
</tr>
|
||||
<tr><td>const_iterator</td>
|
||||
<td><em>implementation-defined</em>,
|
||||
<strong>ConstexprRandomAccessIterator</strong></td>
|
||||
<td><strong>ConstexprRandomAccessIterator</strong></td>
|
||||
<td>convertible to const_pointer</td>
|
||||
</tr>
|
||||
<tr><td>size_type</td>
|
||||
|
@ -261,6 +260,25 @@ convertible to pointer</td>
|
|||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="section" id="construct-copy-destroy">
|
||||
<h4>construct/copy/destroy<a class="headerlink" href="#construct-copy-destroy" title="Permalink to this headline">¶</a></h4>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="34%" />
|
||||
<col width="66%" />
|
||||
</colgroup>
|
||||
<thead valign="bottom">
|
||||
<tr><th class="head">function</th>
|
||||
<th class="head"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody valign="top">
|
||||
<tr><td><a class="reference external" href="operator-assign.html"><em>operator=</em></a></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="section" id="modifiers">
|
||||
<h4>modifiers<a class="headerlink" href="#modifiers" title="Permalink to this headline">¶</a></h4>
|
||||
<table border="1" class="docutils">
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="operator=" href="operator-assign.html" />
|
||||
<link rel="prev" title="Class template array" href="index.html" />
|
||||
<link rel="prev" title="array" href="index.html" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="related">
|
||||
|
@ -35,13 +35,13 @@
|
|||
<a href="operator-assign.html" title="operator="
|
||||
accesskey="N">next</a> |</li>
|
||||
<li class="right" >
|
||||
<a href="index.html" title="Class template array"
|
||||
<a href="index.html" title="array"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../../index.html">Sprout v1.0 documentation</a> »</li>
|
||||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -59,7 +59,7 @@
|
|||
|
||||
<h4>Previous topic</h4>
|
||||
<p class="topless"><a href="index.html"
|
||||
title="previous chapter">Class template array</a></p>
|
||||
title="previous chapter">array</a></p>
|
||||
<h4>Next topic</h4>
|
||||
<p class="topless"><a href="operator-assign.html"
|
||||
title="next chapter">operator=</a></p>
|
||||
|
@ -143,13 +143,13 @@
|
|||
<a href="operator-assign.html" title="operator="
|
||||
>next</a> |</li>
|
||||
<li class="right" >
|
||||
<a href="index.html" title="Class template array"
|
||||
<a href="index.html" title="array"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../../index.html">Sprout v1.0 documentation</a> »</li>
|
||||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="empty" href="empty.html" />
|
||||
<link rel="prev" title="size" href="size.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="fill" href="fill.html" />
|
||||
<link rel="prev" title="(initializer)" href="initializer-.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -155,7 +155,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="front" href="front.html" />
|
||||
<link rel="prev" title="at" href="at.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -160,7 +160,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="rend" href="rend.html" />
|
||||
<link rel="prev" title="end" href="end.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="cbegin" href="cbegin.html" />
|
||||
<link rel="prev" title="rbegin" href="rbegin.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -153,7 +153,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="max_size" href="max_size.html" />
|
||||
<link rel="prev" title="crend" href="crend.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -151,7 +151,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<script type="text/javascript" src="../../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../../index.html" />
|
||||
<link rel="up" title="Class template array" href="index.html" />
|
||||
<link rel="up" title="array" href="index.html" />
|
||||
<link rel="next" title="begin" href="begin.html" />
|
||||
<link rel="prev" title="assign" href="assign.html" />
|
||||
</head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Class template array</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
|
@ -162,7 +162,7 @@
|
|||
<li><a href="../../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../../libraries.html" >Libraries</a> »</li>
|
||||
<li><a href="../index.html" >Sprout.Array</a> »</li>
|
||||
<li><a href="index.html" >Class template array</a> »</li>
|
||||
<li><a href="index.html" >array</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout v1.0 documentation" href="../../../index.html" />
|
||||
<link rel="up" title="Libraries" href="../../libraries.html" />
|
||||
<link rel="next" title="Class template array" href="array/index.html" />
|
||||
<link rel="next" title="array" href="array/index.html" />
|
||||
<link rel="prev" title="Libraries" href="../../libraries.html" />
|
||||
</head>
|
||||
<body>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="array/index.html" title="Class template array"
|
||||
<a href="array/index.html" title="array"
|
||||
accesskey="N">next</a> |</li>
|
||||
<li class="right" >
|
||||
<a href="../../libraries.html" title="Libraries"
|
||||
|
@ -47,8 +47,18 @@
|
|||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference external" href="#">Sprout.Array</a><ul>
|
||||
<li><a class="reference external" href="#description">Description</a><ul>
|
||||
<li><a class="reference external" href="#classes">Classes</a></li>
|
||||
<li><a class="reference external" href="#non-member-functions">Non-member functions</a></li>
|
||||
<li><a class="reference external" href="#non-member-functions">Non-member functions</a><ul>
|
||||
<li><a class="reference external" href="#generators">generators</a></li>
|
||||
<li><a class="reference external" href="#specialized-algorithms">specialized algorithms</a></li>
|
||||
<li><a class="reference external" href="#comparisons">comparisons</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference external" href="#tuple-interface">Tuple interface</a></li>
|
||||
<li><a class="reference external" href="#hash-support">Hash support</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference external" href="#header">Header</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -59,7 +69,7 @@
|
|||
title="previous chapter">Libraries</a></p>
|
||||
<h4>Next topic</h4>
|
||||
<p class="topless"><a href="array/index.html"
|
||||
title="next chapter">Class template array</a></p>
|
||||
title="next chapter">array</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/array/index.txt"
|
||||
|
@ -88,8 +98,10 @@
|
|||
|
||||
<div class="section" id="id1">
|
||||
<h1>Sprout.Array<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
|
||||
<div class="section" id="description">
|
||||
<h2>Description<a class="headerlink" href="#description" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="section" id="classes">
|
||||
<h2>Classes<a class="headerlink" href="#classes" title="Permalink to this headline">¶</a></h2>
|
||||
<h3>Classes<a class="headerlink" href="#classes" title="Permalink to this headline">¶</a></h3>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="34%" />
|
||||
|
@ -108,7 +120,34 @@
|
|||
</table>
|
||||
</div>
|
||||
<div class="section" id="non-member-functions">
|
||||
<h2>Non-member functions<a class="headerlink" href="#non-member-functions" title="Permalink to this headline">¶</a></h2>
|
||||
<h3>Non-member functions<a class="headerlink" href="#non-member-functions" title="Permalink to this headline">¶</a></h3>
|
||||
<div class="section" id="generators">
|
||||
<h4>generators<a class="headerlink" href="#generators" title="Permalink to this headline">¶</a></h4>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="43%" />
|
||||
<col width="57%" />
|
||||
</colgroup>
|
||||
<thead valign="bottom">
|
||||
<tr><th class="head">function</th>
|
||||
<th class="head"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody valign="top">
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">to_array</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">make_array</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">make_common_array</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="section" id="specialized-algorithms">
|
||||
<h4>specialized algorithms<a class="headerlink" href="#specialized-algorithms" title="Permalink to this headline">¶</a></h4>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="34%" />
|
||||
|
@ -123,12 +162,102 @@
|
|||
<tr><td><tt class="xref docutils literal"><span class="pre">swap</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">to_array</span></tt></td>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="section" id="comparisons">
|
||||
<h4>comparisons<a class="headerlink" href="#comparisons" title="Permalink to this headline">¶</a></h4>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="43%" />
|
||||
<col width="57%" />
|
||||
</colgroup>
|
||||
<thead valign="bottom">
|
||||
<tr><th class="head">function</th>
|
||||
<th class="head"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody valign="top">
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">operator==</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">operator!=</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">operator<</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">operator></span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">operator<=</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">operator>=</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="tuple-interface">
|
||||
<h3>Tuple interface<a class="headerlink" href="#tuple-interface" title="Permalink to this headline">¶</a></h3>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="43%" />
|
||||
<col width="57%" />
|
||||
</colgroup>
|
||||
<thead valign="bottom">
|
||||
<tr><th class="head">matafunction</th>
|
||||
<th class="head"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody valign="top">
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">std::tuple_size</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">std::tuple_element</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="43%" />
|
||||
<col width="57%" />
|
||||
</colgroup>
|
||||
<thead valign="bottom">
|
||||
<tr><th class="head">function</th>
|
||||
<th class="head"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody valign="top">
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">tuple_get</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="section" id="hash-support">
|
||||
<h3>Hash support<a class="headerlink" href="#hash-support" title="Permalink to this headline">¶</a></h3>
|
||||
<table border="1" class="docutils">
|
||||
<colgroup>
|
||||
<col width="34%" />
|
||||
<col width="66%" />
|
||||
</colgroup>
|
||||
<thead valign="bottom">
|
||||
<tr><th class="head">function</th>
|
||||
<th class="head"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody valign="top">
|
||||
<tr><td><tt class="xref docutils literal"><span class="pre">hash_value</span></tt></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="header">
|
||||
<h2>Header<a class="headerlink" href="#header" title="Permalink to this headline">¶</a></h2>
|
||||
<p><tt class="docutils literal"><span class="pre">sprout/array.hpp</span></tt></p>
|
||||
|
@ -148,7 +277,7 @@
|
|||
<a href="../../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="array/index.html" title="Class template array"
|
||||
<a href="array/index.html" title="array"
|
||||
>next</a> |</li>
|
||||
<li class="right" >
|
||||
<a href="../../libraries.html" title="Libraries"
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
.. _sprout-array-array:
|
||||
###############################################################################
|
||||
Class template array
|
||||
array
|
||||
###############################################################################
|
||||
|
||||
.. toctree::
|
||||
|
@ -111,10 +111,9 @@ type definition
|
|||
======================================== =============================================================================== =======================================
|
||||
reference T&
|
||||
const_reference T const&
|
||||
iterator *implementation-defined*, convertible to const_iterator,
|
||||
**ConstexprRandomAccessIterator** convertible to pointer
|
||||
const_iterator *implementation-defined*, convertible to const_pointer
|
||||
**ConstexprRandomAccessIterator**
|
||||
iterator **ConstexprRandomAccessIterator** convertible to const_iterator,
|
||||
convertible to pointer
|
||||
const_iterator **ConstexprRandomAccessIterator** convertible to const_pointer
|
||||
size_type std::size_t
|
||||
difference_type std::ptrdiff_t
|
||||
value_type T
|
||||
|
@ -138,6 +137,15 @@ function
|
|||
:doc:`(initializer) <./initializer->`
|
||||
======================================== ===============================================================================
|
||||
|
||||
construct/copy/destroy
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
======================================== ===============================================================================
|
||||
function
|
||||
======================================== ===============================================================================
|
||||
:doc:`operator= <./operator-assign>`
|
||||
======================================== ===============================================================================
|
||||
|
||||
modifiers
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -8,9 +8,12 @@ Sprout.Array
|
|||
|
||||
array/index
|
||||
|
||||
Classes
|
||||
Description
|
||||
========================================
|
||||
|
||||
Classes
|
||||
----------------------------------------
|
||||
|
||||
======================================== ===============================================================================
|
||||
class
|
||||
======================================== ===============================================================================
|
||||
|
@ -18,13 +21,65 @@ class
|
|||
======================================== ===============================================================================
|
||||
|
||||
Non-member functions
|
||||
========================================
|
||||
----------------------------------------
|
||||
|
||||
generators
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
============================================================ ===============================================================================
|
||||
function
|
||||
============================================================ ===============================================================================
|
||||
:doc:`to_array <./to_array>`
|
||||
:doc:`make_array <./make_array>`
|
||||
:doc:`make_common_array <./make_common_array>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
specialized algorithms
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
======================================== ===============================================================================
|
||||
function
|
||||
======================================== ===============================================================================
|
||||
:doc:`swap <./swap>`
|
||||
:doc:`to_array <./to_array>`
|
||||
======================================== ===============================================================================
|
||||
|
||||
comparisons
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
============================================================ ===============================================================================
|
||||
function
|
||||
============================================================ ===============================================================================
|
||||
:doc:`operator== <./operator-equal_to>`
|
||||
:doc:`operator!= <./operator-not_equal_to>`
|
||||
:doc:`operator< <./operator-less>`
|
||||
:doc:`operator> <./operator-greater>`
|
||||
:doc:`operator<= <./operator-less_equal>`
|
||||
:doc:`operator>= <./operator-greater_equal>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
Tuple interface
|
||||
----------------------------------------
|
||||
|
||||
============================================================ ===============================================================================
|
||||
matafunction
|
||||
============================================================ ===============================================================================
|
||||
:doc:`std::tuple_size <./std-tuple_size>`
|
||||
:doc:`std::tuple_element <./std-tuple_element>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
============================================================ ===============================================================================
|
||||
function
|
||||
============================================================ ===============================================================================
|
||||
:doc:`tuple_get <./tuple_get>`
|
||||
============================================================ ===============================================================================
|
||||
|
||||
Hash support
|
||||
----------------------------------------
|
||||
|
||||
======================================== ===============================================================================
|
||||
function
|
||||
======================================== ===============================================================================
|
||||
:doc:`hash_value <./hash_value>`
|
||||
======================================== ===============================================================================
|
||||
|
||||
Header
|
||||
|
|
Loading…
Reference in a new issue