update make_array, update copyright

This commit is contained in:
Bolero-MURAKAMI 2014-04-28 11:06:06 +09:00
parent 8bc3c20873
commit 6183b74ad9
166 changed files with 193 additions and 178 deletions

View file

@ -1,4 +1,4 @@
# Sphinx build info version 1 # Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 834ef8be01fb67c063a7ef4797103ffc config: 1fe1cd7018fbd7ed860eb5ae0494eb99
tags: fbb0d17656682115ca4d033fb2f83ba1 tags: fbb0d17656682115ca4d033fb2f83ba1

View file

@ -49,7 +49,7 @@ Supported Compilers
Linux: Linux:
* GCC, C++11 mode: 4.7.0, 4.7.1, 4.7.2, 4.7.3, 4.8.0, 4.8.1, 4.8.2 * GCC, C++11 mode: 4.7.0, 4.7.1, 4.7.2, 4.7.3, 4.8.0, 4.8.1, 4.8.2
* Clang, C++11 mode: 3.2, 3.3 * Clang, C++11 mode: 3.2, 3.3, 3.4
.. _sprout-author: .. _sprout-author:
******************************************************************************* *******************************************************************************
@ -64,7 +64,7 @@ Author
Copyrights Copyrights
******************************************************************************* *******************************************************************************
| Copyright (C) 2011-2013 Bolero MURAKAMI. | Copyright (C) 2011-2014 Bolero MURAKAMI.
| Distributed under the Boost Software License, Version 1.0. | Distributed under the Boost Software License, Version 1.0.
| (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

View file

@ -8,7 +8,11 @@ Interface
.. sourcecode:: c++ .. sourcecode:: c++
template<typename T, typename... Types> template<typename T, typename... Types>
inline SPROUT_CONSTEXPR sprout::array<T, sizeof...(Types)> inline SPROUT_CONSTEXPR sprout::array<typename std::remove_cv<T>::type, sizeof...(Types)>
make_array(Types&&... args);
template</*implementation-defined*/, typename... Types>
inline SPROUT_CONSTEXPR sprout::array<typename sprout::common_decay<Types...>::type, sizeof...(Types)>
make_array(Types&&... args); make_array(Types&&... args);
Returns Returns
@ -19,7 +23,8 @@ Returns
Remarks Remarks
======================================== ========================================
| This function needs to be specified in the template parameters explicitly type T of the elements in the array. | A first version needs to be specified in the template parameters explicitly type T of the elements in the array.
| And, the type of the elements in the array is a decayed common type of all arguments in the second version.
Examples Examples
======================================== ========================================

View file

@ -8,7 +8,7 @@ Interface
.. sourcecode:: c++ .. sourcecode:: c++
template<typename... Types> template<typename... Types>
inline SPROUT_CONSTEXPR sprout::array<typename sprout::common_decay<Types&&...>::type, sizeof...(Types)> inline SPROUT_CONSTEXPR sprout::array<typename sprout::common_decay<Types...>::type, sizeof...(Types)>
make_common_array(Types&&... args); make_common_array(Types&&... args);
Returns Returns
@ -19,7 +19,7 @@ Returns
Remarks Remarks
======================================== ========================================
| Type of the elements in the array is a decayed common type of all arguments. | The type of the elements in the array is a decayed common type of all arguments.
Examples Examples
======================================== ========================================

View file

@ -99,7 +99,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -137,7 +137,7 @@
<p>Linux:</p> <p>Linux:</p>
<ul class="simple"> <ul class="simple">
<li>GCC, C++11 mode: 4.7.0, 4.7.1, 4.7.2, 4.7.3, 4.8.0, 4.8.1, 4.8.2</li> <li>GCC, C++11 mode: 4.7.0, 4.7.1, 4.7.2, 4.7.3, 4.8.0, 4.8.1, 4.8.2</li>
<li>Clang, C++11 mode: 3.2, 3.3</li> <li>Clang, C++11 mode: 3.2, 3.3, 3.4</li>
</ul> </ul>
</div> </div>
<div class="section" id="author"> <div class="section" id="author">
@ -150,7 +150,7 @@
<div class="section" id="copyrights"> <div class="section" id="copyrights">
<h2>Copyrights<a class="headerlink" href="#copyrights" title="Permalink to this headline"></a></h2> <h2>Copyrights<a class="headerlink" href="#copyrights" title="Permalink to this headline"></a></h2>
<div class="line-block"> <div class="line-block">
<div class="line">Copyright (C) 2011-2013 Bolero MURAKAMI.</div> <div class="line">Copyright (C) 2011-2014 Bolero MURAKAMI.</div>
<div class="line">Distributed under the Boost Software License, Version 1.0.</div> <div class="line">Distributed under the Boost Software License, Version 1.0.</div>
<div class="line">(See accompanying file LICENSE_1_0.txt or copy at <a class="reference external" href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>)</div> <div class="line">(See accompanying file LICENSE_1_0.txt or copy at <a class="reference external" href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>)</div>
</div> </div>
@ -176,7 +176,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -180,7 +180,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -175,7 +175,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -174,7 +174,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -175,7 +175,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -174,7 +174,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -186,7 +186,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -192,7 +192,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -174,7 +174,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -175,7 +175,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -197,7 +197,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -191,7 +191,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -176,7 +176,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -195,7 +195,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -195,7 +195,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -177,7 +177,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -177,7 +177,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -380,7 +380,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -173,7 +173,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -177,7 +177,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -179,7 +179,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -173,7 +173,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -196,7 +196,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -177,7 +177,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -179,7 +179,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -173,7 +173,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -173,7 +173,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -205,7 +205,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -185,7 +185,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -226,7 +226,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -180,7 +180,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -226,7 +226,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -180,7 +180,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -240,7 +240,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -181,7 +181,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -203,7 +203,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -175,7 +175,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -174,7 +174,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -175,7 +175,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -174,7 +174,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -195,7 +195,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -194,7 +194,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -222,7 +222,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -185,7 +185,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -191,7 +191,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -179,7 +179,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -191,7 +191,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -180,7 +180,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -462,7 +462,7 @@ convertible to pointer</td>
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -168,7 +168,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -181,7 +181,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -171,7 +171,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -171,7 +171,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -171,7 +171,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -171,7 +171,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -171,7 +171,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -171,7 +171,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -179,7 +179,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -188,7 +188,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -176,7 +176,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -175,7 +175,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -183,7 +183,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -182,7 +182,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -196,7 +196,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -321,7 +321,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -111,7 +111,11 @@
<div class="section" id="interface"> <div class="section" id="interface">
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline"></a></h2> <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">&lt;</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="k">typename</span><span class="p">...</span> <span class="n">Types</span><span class="o">&gt;</span> <div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o">&lt;</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="k">typename</span><span class="p">...</span> <span class="n">Types</span><span class="o">&gt;</span>
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="n">sprout</span><span class="o">::</span><span class="n">array</span><span class="o">&lt;</span><span class="n">T</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">...(</span><span class="n">Types</span><span class="p">)</span><span class="o">&gt;</span> <span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="n">sprout</span><span class="o">::</span><span class="n">array</span><span class="o">&lt;</span><span class="k">typename</span> <span class="n">std</span><span class="o">::</span><span class="n">remove_cv</span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;::</span><span class="n">type</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">...(</span><span class="n">Types</span><span class="p">)</span><span class="o">&gt;</span>
<span class="n">make_array</span><span class="p">(</span><span class="n">Types</span><span class="o">&amp;&amp;</span><span class="p">...</span> <span class="n">args</span><span class="p">);</span>
<span class="k">template</span><span class="o">&lt;</span><span class="cm">/*implementation-defined*/</span><span class="p">,</span> <span class="k">typename</span><span class="p">...</span> <span class="n">Types</span><span class="o">&gt;</span>
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="n">sprout</span><span class="o">::</span><span class="n">array</span><span class="o">&lt;</span><span class="k">typename</span> <span class="n">sprout</span><span class="o">::</span><span class="n">common_decay</span><span class="o">&lt;</span><span class="n">Types</span><span class="p">...</span><span class="o">&gt;::</span><span class="n">type</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">...(</span><span class="n">Types</span><span class="p">)</span><span class="o">&gt;</span>
<span class="n">make_array</span><span class="p">(</span><span class="n">Types</span><span class="o">&amp;&amp;</span><span class="p">...</span> <span class="n">args</span><span class="p">);</span> <span class="n">make_array</span><span class="p">(</span><span class="n">Types</span><span class="o">&amp;&amp;</span><span class="p">...</span> <span class="n">args</span><span class="p">);</span>
</pre></div> </pre></div>
</div> </div>
@ -125,7 +129,8 @@
<div class="section" id="remarks"> <div class="section" id="remarks">
<h2>Remarks<a class="headerlink" href="#remarks" title="Permalink to this headline"></a></h2> <h2>Remarks<a class="headerlink" href="#remarks" title="Permalink to this headline"></a></h2>
<div class="line-block"> <div class="line-block">
<div class="line">This function needs to be specified in the template parameters explicitly type T of the elements in the array.</div> <div class="line">A first version needs to be specified in the template parameters explicitly type T of the elements in the array.</div>
<div class="line">And, the type of the elements in the array is a decayed common type of all arguments in the second version.</div>
</div> </div>
</div> </div>
<div class="section" id="examples"> <div class="section" id="examples">
@ -176,7 +181,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -111,7 +111,7 @@
<div class="section" id="interface"> <div class="section" id="interface">
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline"></a></h2> <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">&lt;</span><span class="k">typename</span><span class="p">...</span> <span class="n">Types</span><span class="o">&gt;</span> <div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o">&lt;</span><span class="k">typename</span><span class="p">...</span> <span class="n">Types</span><span class="o">&gt;</span>
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="n">sprout</span><span class="o">::</span><span class="n">array</span><span class="o">&lt;</span><span class="k">typename</span> <span class="n">sprout</span><span class="o">::</span><span class="n">common_decay</span><span class="o">&lt;</span><span class="n">Types</span><span class="o">&amp;&amp;</span><span class="p">...</span><span class="o">&gt;::</span><span class="n">type</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">...(</span><span class="n">Types</span><span class="p">)</span><span class="o">&gt;</span> <span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="n">sprout</span><span class="o">::</span><span class="n">array</span><span class="o">&lt;</span><span class="k">typename</span> <span class="n">sprout</span><span class="o">::</span><span class="n">common_decay</span><span class="o">&lt;</span><span class="n">Types</span><span class="p">...</span><span class="o">&gt;::</span><span class="n">type</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">...(</span><span class="n">Types</span><span class="p">)</span><span class="o">&gt;</span>
<span class="n">make_common_array</span><span class="p">(</span><span class="n">Types</span><span class="o">&amp;&amp;</span><span class="p">...</span> <span class="n">args</span><span class="p">);</span> <span class="n">make_common_array</span><span class="p">(</span><span class="n">Types</span><span class="o">&amp;&amp;</span><span class="p">...</span> <span class="n">args</span><span class="p">);</span>
</pre></div> </pre></div>
</div> </div>
@ -125,7 +125,7 @@
<div class="section" id="remarks"> <div class="section" id="remarks">
<h2>Remarks<a class="headerlink" href="#remarks" title="Permalink to this headline"></a></h2> <h2>Remarks<a class="headerlink" href="#remarks" title="Permalink to this headline"></a></h2>
<div class="line-block"> <div class="line-block">
<div class="line">Type of the elements in the array is a decayed common type of all arguments.</div> <div class="line">The type of the elements in the array is a decayed common type of all arguments.</div>
</div> </div>
</div> </div>
<div class="section" id="examples"> <div class="section" id="examples">
@ -176,7 +176,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -261,7 +261,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -220,7 +220,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -323,7 +323,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -179,7 +179,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -172,7 +172,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -170,7 +170,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -167,7 +167,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -206,7 +206,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

View file

@ -255,7 +255,7 @@
</ul> </ul>
</div> </div>
<div class="footer"> <div class="footer">
&copy; Copyright 2013, Bolero MURAKAMI. &copy; Copyright 2013-2014, Bolero MURAKAMI.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div> </div>
</body> </body>

Some files were not shown because too many files have changed in this diff Show more