mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
fix directory structure
This commit is contained in:
parent
bd73a0c510
commit
bf12021ae6
241 changed files with 1777 additions and 2122 deletions
|
@ -1,22 +1,69 @@
|
|||
.. Sprout documentation master file, created by
|
||||
sphinx-quickstart on Thu Aug 15 11:33:13 2013.
|
||||
You can adapt this file completely to your liking, but it should at least
|
||||
contain the root `toctree` directive.
|
||||
|
||||
Welcome to Sprout's documentation!
|
||||
==================================
|
||||
|
||||
Contents:
|
||||
.. _sprout:
|
||||
###############################################################################
|
||||
Sprout C++ Libraries
|
||||
###############################################################################
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
:maxdepth: 1
|
||||
|
||||
libs/index
|
||||
libs/index
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
.. _sprout-welcome:
|
||||
*******************************************************************************
|
||||
Welcome to the Sprout C++ Libraries
|
||||
*******************************************************************************
|
||||
|
||||
* :ref:`genindex`
|
||||
* :ref:`modindex`
|
||||
* :ref:`search`
|
||||
| C++11 constexpr based Containers, Algorithms, Random numbers, Parsing, Ray tracing, Synthesizer, and others.
|
||||
|
||||
.. _sprout-documentation:
|
||||
*******************************************************************************
|
||||
Library Documentation
|
||||
*******************************************************************************
|
||||
|
||||
| The starting point for the documentation of individual libraries is the :doc:`Libraries page <./libs/index>`, which gives a brief description of each library and links to its documentation.
|
||||
|
|
||||
|
||||
.. _sprout-project:
|
||||
*******************************************************************************
|
||||
Project page
|
||||
*******************************************************************************
|
||||
|
||||
* `Project page <http://bolero-murakami.github.io/Sprout/>`_
|
||||
* `Repository (Github) <https://github.com/bolero-MURAKAMI/Sprout/>`_
|
||||
* `Wiki (japanese) <http://www.boleros.x0.com/doc/sproutwiki/>`_
|
||||
|
||||
.. _sprout-install:
|
||||
*******************************************************************************
|
||||
Install
|
||||
*******************************************************************************
|
||||
|
||||
| Through the path to the directory. ``/path/to/sprout``
|
||||
| This library can be used in the header only.
|
||||
|
||||
.. _sprout-compilers:
|
||||
*******************************************************************************
|
||||
Supported Compilers
|
||||
*******************************************************************************
|
||||
|
||||
Linux:
|
||||
|
||||
* GCC, C++11 mode: 4.7.0, 4.7.1, 4.7.2, 4.7.3, 4.8.0, 4.8.1
|
||||
* Clang, C++11 mode: 3.2, 3.3
|
||||
|
||||
.. _sprout-author:
|
||||
*******************************************************************************
|
||||
Author
|
||||
*******************************************************************************
|
||||
|
||||
| Bolero MURAKAMI `(Mail) <contact-lib@boleros.x0.com>`_
|
||||
| `[Website] <http://bolero-murakami.github.io/>`_ `[Twitter] <https://twitter.com/bolero_murakami>`_ `[Facebook] <http://www.facebook.com/genya.murakami>`_ `[Blog] <http://d.hatena.ne.jp/boleros/>`_ `[Github] <https://github.com/bolero-MURAKAMI>`_ `[SlideShare] <http://www.slideshare.net/GenyaMurakami>`_
|
||||
|
||||
.. _sprout-copyrights:
|
||||
*******************************************************************************
|
||||
Copyrights
|
||||
*******************************************************************************
|
||||
|
||||
| Copyright (C) 2011-2013 Bolero MURAKAMI.
|
||||
| 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)
|
||||
|
||||
|
|
|
@ -1,69 +1,130 @@
|
|||
.. _sprout:
|
||||
.. _sprout-libraries:
|
||||
###############################################################################
|
||||
Sprout C++ Libraries
|
||||
Libraries
|
||||
###############################################################################
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
:hidden:
|
||||
|
||||
libraries
|
||||
array/index
|
||||
algorithm/index
|
||||
|
||||
.. _sprout-welcome:
|
||||
.. _sprout-listed_by_alphabetically:
|
||||
*******************************************************************************
|
||||
Welcome to the Sprout C++ Libraries
|
||||
Libraries Listed Alphabetically
|
||||
*******************************************************************************
|
||||
|
||||
| C++11 constexpr based Containers, Algorithms, Random numbers, Parsing, Ray tracing, Synthesizer, and others.
|
||||
* :doc:`algorithm <./algorithm/index>` - Standard library like generic algorithms.
|
||||
* :doc:`array <./array/index>` - Standard library compliant class template for storing fixed-size sequences of objects.
|
||||
|
||||
.. _sprout-documentation:
|
||||
.. _sprout-listed_by_category:
|
||||
*******************************************************************************
|
||||
Library Documentation
|
||||
Libraries Listed by Category
|
||||
*******************************************************************************
|
||||
|
||||
| The starting point for the documentation of individual libraries is the :doc:`Libraries page <./libraries>`, which gives a brief description of each library and links to its documentation.
|
||||
|
|
||||
.. _sprout-listed_by_category-containers:
|
||||
Containers and Data structures
|
||||
=======================================
|
||||
|
||||
.. _sprout-project:
|
||||
*******************************************************************************
|
||||
Project page
|
||||
*******************************************************************************
|
||||
* :doc:`array <./array/index>` - Standard library compliant class template for storing fixed-size sequences of objects.
|
||||
* :doc:`string <./string/index>` - Compile-time string of fixed-length buffer.
|
||||
* :doc:`tuple <./tuple/index>`
|
||||
* :doc:`optional <./optional/index>`
|
||||
* :doc:`variant <./variant/index>`
|
||||
* :doc:`bitset <./bitset/index>`
|
||||
|
||||
* `Project page <http://bolero-murakami.github.io/Sprout/>`_
|
||||
* `Repository (Github) <https://github.com/bolero-MURAKAMI/Sprout/>`_
|
||||
* `Wiki (japanese) <http://www.boleros.x0.com/doc/sproutwiki/>`_
|
||||
.. _sprout-listed_by_category-algorithms:
|
||||
Algorithms
|
||||
=======================================
|
||||
|
||||
.. _sprout-install:
|
||||
*******************************************************************************
|
||||
Install
|
||||
*******************************************************************************
|
||||
* :doc:`algorithm <./algorithm/index>` - Standard library like generic algorithms.
|
||||
* :doc:`numeric <./numeric/index>`
|
||||
* :doc:`range_algorithm <./range/algorithm/index>`
|
||||
* :doc:`range_numeric <./range/numeric/index>`
|
||||
* :doc:`range_adaptor <./range/adaptor/index>`
|
||||
|
||||
| Through the path to the directory. ``/path/to/sprout``
|
||||
| This library can be used in the header only.
|
||||
.. _sprout-listed_by_category-container_supports:
|
||||
Container supports
|
||||
=======================================
|
||||
|
||||
.. _sprout-compilers:
|
||||
*******************************************************************************
|
||||
Supported Compilers
|
||||
*******************************************************************************
|
||||
* :doc:`sub_array <./sub_array/index>`
|
||||
* :doc:`pit <./pit/index>`
|
||||
* :doc:`operation <./operation/index>`
|
||||
* :doc:`container <./container/index>`
|
||||
|
||||
Linux:
|
||||
.. _sprout-listed_by_category-function_objects:
|
||||
Function Objects
|
||||
=======================================
|
||||
|
||||
* GCC, C++11 mode: 4.7.0, 4.7.1, 4.7.2, 4.7.3, 4.8.0, 4.8.1
|
||||
* Clang, C++11 mode: 3.2, 3.3
|
||||
* :doc:`functional <./functional/index>`
|
||||
|
||||
.. _sprout-author:
|
||||
*******************************************************************************
|
||||
Author
|
||||
*******************************************************************************
|
||||
.. _sprout-listed_by_category-iterators:
|
||||
Iterators
|
||||
=======================================
|
||||
|
||||
| Bolero MURAKAMI `(Mail) <contact-lib@boleros.x0.com>`_
|
||||
| `[Website] <http://bolero-murakami.github.io/>`_ `[Twitter] <https://twitter.com/bolero_murakami>`_ `[Facebook] <http://www.facebook.com/genya.murakami>`_ `[Blog] <http://d.hatena.ne.jp/boleros/>`_ `[Github] <https://github.com/bolero-MURAKAMI>`_ `[SlideShare] <http://www.slideshare.net/GenyaMurakami>`_
|
||||
* :doc:`iterator <./iterator/index>`
|
||||
|
||||
.. _sprout-copyrights:
|
||||
*******************************************************************************
|
||||
Copyrights
|
||||
*******************************************************************************
|
||||
.. _sprout-listed_by_category-mathematics:
|
||||
Mathematics
|
||||
=======================================
|
||||
|
||||
| Copyright (C) 2011-2013 Bolero MURAKAMI.
|
||||
| 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)
|
||||
* :doc:`math_functions <./math_functions/index>`
|
||||
* :doc:`random <./random/index>`
|
||||
* :doc:`complex <./complex/index>`
|
||||
* :doc:`rational <./rational/index>`
|
||||
|
||||
.. _sprout-listed_by_category-template_metaprogramming:
|
||||
Template Metaprogramming
|
||||
=======================================
|
||||
|
||||
* :doc:`index_tuple <./index_tuple/index>`
|
||||
* :doc:`type_traits <./type_traits/index>`
|
||||
* :doc:`type <./type/index>`
|
||||
|
||||
.. _sprout-listed_by_category-preprocessor_metaprogramming:
|
||||
Preprocessor Metaprogramming
|
||||
=======================================
|
||||
|
||||
* :doc:`preprocessor <./preprocessor/index>`
|
||||
|
||||
.. _sprout-listed_by_category-domain_specific:
|
||||
Domain specific
|
||||
=======================================
|
||||
|
||||
* :doc:`uuid <./uuid/index>`
|
||||
* :doc:`checksum <./checksum/index>`
|
||||
|
||||
.. _sprout-listed_by_category-parsing:
|
||||
Parsing
|
||||
=======================================
|
||||
|
||||
* :doc:`weed <./weed/index>`
|
||||
|
||||
.. _sprout-listed_by_category-ray_tracing:
|
||||
Ray tracing
|
||||
=======================================
|
||||
|
||||
* :doc:`darkroom <./darkroom/index>`
|
||||
|
||||
.. _sprout-listed_by_category-synthesizer:
|
||||
Synthesizer
|
||||
=======================================
|
||||
|
||||
* :doc:`compost <./compost/index>`
|
||||
|
||||
.. _sprout-listed_by_category-miscellaneous:
|
||||
Miscellaneous
|
||||
=======================================
|
||||
|
||||
* :doc:`utility <./utility/index>`
|
||||
* :doc:`bit_operation <./bit_operation/index>`
|
||||
|
||||
.. _sprout-listed_by_category-c-compatible:
|
||||
C-compatible
|
||||
=======================================
|
||||
|
||||
* :doc:`cstdlib <./cstdlib/index>`
|
||||
* :doc:`cstring <./cstring/index>`
|
||||
* :doc:`cwchar <./cwchar/index>`
|
||||
* :doc:`cctype <./cctype/index>`
|
||||
* :doc:`cinttypes <./cinttypes/index>`
|
||||
|
|
|
@ -1,130 +0,0 @@
|
|||
.. _sprout-libraries:
|
||||
###############################################################################
|
||||
Libraries
|
||||
###############################################################################
|
||||
|
||||
.. toctree::
|
||||
:hidden:
|
||||
|
||||
sprout/array/index
|
||||
sprout/algorithm/index
|
||||
|
||||
.. _sprout-listed_by_alphabetically:
|
||||
*******************************************************************************
|
||||
Libraries Listed Alphabetically
|
||||
*******************************************************************************
|
||||
|
||||
* :doc:`algorithm <./sprout/algorithm/index>` - Standard library like generic algorithms.
|
||||
* :doc:`array <./sprout/array/index>` - Standard library compliant class template for storing fixed-size sequences of objects.
|
||||
|
||||
.. _sprout-listed_by_category:
|
||||
*******************************************************************************
|
||||
Libraries Listed by Category
|
||||
*******************************************************************************
|
||||
|
||||
.. _sprout-listed_by_category-containers:
|
||||
Containers and Data structures
|
||||
=======================================
|
||||
|
||||
* :doc:`array <./sprout/array/index>` - Standard library compliant class template for storing fixed-size sequences of objects.
|
||||
* :doc:`string <./sprout/string/index>` - Compile-time string of fixed-length buffer.
|
||||
* :doc:`tuple <./sprout/tuple/index>`
|
||||
* :doc:`optional <./sprout/optional/index>`
|
||||
* :doc:`variant <./sprout/variant/index>`
|
||||
* :doc:`bitset <./sprout/bitset/index>`
|
||||
|
||||
.. _sprout-listed_by_category-algorithms:
|
||||
Algorithms
|
||||
=======================================
|
||||
|
||||
* :doc:`algorithm <./sprout/algorithm/index>` - Standard library like generic algorithms.
|
||||
* :doc:`numeric <./sprout/numeric/index>`
|
||||
* :doc:`range_algorithm <./sprout/range/algorithm/index>`
|
||||
* :doc:`range_numeric <./sprout/range/numeric/index>`
|
||||
* :doc:`range_adaptor <./sprout/range/adaptor/index>`
|
||||
|
||||
.. _sprout-listed_by_category-container_supports:
|
||||
Container supports
|
||||
=======================================
|
||||
|
||||
* :doc:`sub_array <./sprout/sub_array/index>`
|
||||
* :doc:`pit <./sprout/pit/index>`
|
||||
* :doc:`operation <./sprout/operation/index>`
|
||||
* :doc:`container <./sprout/container/index>`
|
||||
|
||||
.. _sprout-listed_by_category-function_objects:
|
||||
Function Objects
|
||||
=======================================
|
||||
|
||||
* :doc:`functional <./sprout/functional/index>`
|
||||
|
||||
.. _sprout-listed_by_category-iterators:
|
||||
Iterators
|
||||
=======================================
|
||||
|
||||
* :doc:`iterator <./sprout/iterator/index>`
|
||||
|
||||
.. _sprout-listed_by_category-mathematics:
|
||||
Mathematics
|
||||
=======================================
|
||||
|
||||
* :doc:`math_functions <./sprout/math_functions/index>`
|
||||
* :doc:`random <./sprout/random/index>`
|
||||
* :doc:`complex <./sprout/complex/index>`
|
||||
* :doc:`rational <./sprout/rational/index>`
|
||||
|
||||
.. _sprout-listed_by_category-template_metaprogramming:
|
||||
Template Metaprogramming
|
||||
=======================================
|
||||
|
||||
* :doc:`index_tuple <./sprout/index_tuple/index>`
|
||||
* :doc:`type_traits <./sprout/type_traits/index>`
|
||||
* :doc:`type <./sprout/type/index>`
|
||||
|
||||
.. _sprout-listed_by_category-preprocessor_metaprogramming:
|
||||
Preprocessor Metaprogramming
|
||||
=======================================
|
||||
|
||||
* :doc:`preprocessor <./sprout/preprocessor/index>`
|
||||
|
||||
.. _sprout-listed_by_category-domain_specific:
|
||||
Domain specific
|
||||
=======================================
|
||||
|
||||
* :doc:`uuid <./sprout/uuid/index>`
|
||||
* :doc:`checksum <./sprout/checksum/index>`
|
||||
|
||||
.. _sprout-listed_by_category-parsing:
|
||||
Parsing
|
||||
=======================================
|
||||
|
||||
* :doc:`weed <./sprout/weed/index>`
|
||||
|
||||
.. _sprout-listed_by_category-ray_tracing:
|
||||
Ray tracing
|
||||
=======================================
|
||||
|
||||
* :doc:`darkroom <./sprout/darkroom/index>`
|
||||
|
||||
.. _sprout-listed_by_category-synthesizer:
|
||||
Synthesizer
|
||||
=======================================
|
||||
|
||||
* :doc:`compost <./sprout/compost/index>`
|
||||
|
||||
.. _sprout-listed_by_category-miscellaneous:
|
||||
Miscellaneous
|
||||
=======================================
|
||||
|
||||
* :doc:`utility <./sprout/utility/index>`
|
||||
* :doc:`bit_operation <./sprout/bit_operation/index>`
|
||||
|
||||
.. _sprout-listed_by_category-c-compatible:
|
||||
C-compatible
|
||||
=======================================
|
||||
|
||||
* :doc:`cstdlib <./sprout/cstdlib/index>`
|
||||
* :doc:`cstring <./sprout/cstring/index>`
|
||||
* :doc:`cwchar <./sprout/cwchar/index>`
|
||||
* :doc:`cctype <./sprout/cctype/index>`
|
||||
* :doc:`cinttypes <./sprout/cinttypes/index>`
|
|
@ -8,7 +8,7 @@
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
||||
<title>Welcome to Sprout’s documentation! — Sprout 1.0 documentation</title>
|
||||
<title>Sprout C++ Libraries — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
||||
|
@ -26,7 +26,7 @@
|
|||
<script type="text/javascript" src="_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="#" />
|
||||
<link rel="next" title="Sprout C++ Libraries" href="libs/index.html" />
|
||||
<link rel="next" title="Libraries" href="libs/index.html" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="related">
|
||||
|
@ -36,7 +36,7 @@
|
|||
<a href="genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="libs/index.html" title="Sprout C++ Libraries"
|
||||
<a href="libs/index.html" title="Libraries"
|
||||
accesskey="N">next</a> |</li>
|
||||
<li><a href="#">Sprout 1.0 documentation</a> »</li>
|
||||
</ul>
|
||||
|
@ -45,15 +45,21 @@
|
|||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="#">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">Welcome to Sprout’s documentation!</a><ul>
|
||||
<li><a class="reference internal" href="#">Sprout C++ Libraries</a><ul>
|
||||
<li><a class="reference internal" href="#welcome-to-the-sprout-c-libraries">Welcome to the Sprout C++ Libraries</a></li>
|
||||
<li><a class="reference internal" href="#library-documentation">Library Documentation</a></li>
|
||||
<li><a class="reference internal" href="#project-page">Project page</a></li>
|
||||
<li><a class="reference internal" href="#install">Install</a></li>
|
||||
<li><a class="reference internal" href="#supported-compilers">Supported Compilers</a></li>
|
||||
<li><a class="reference internal" href="#author">Author</a></li>
|
||||
<li><a class="reference internal" href="#copyrights">Copyrights</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
|
||||
</ul>
|
||||
|
||||
<h4>Next topic</h4>
|
||||
<p class="topless"><a href="libs/index.html"
|
||||
title="next chapter">Sprout C++ Libraries</a></p>
|
||||
title="next chapter">Libraries</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="_sources/index.txt"
|
||||
|
@ -80,32 +86,64 @@
|
|||
<div class="bodywrapper">
|
||||
<div class="body">
|
||||
|
||||
<div class="section" id="welcome-to-sprout-s-documentation">
|
||||
<h1>Welcome to Sprout’s documentation!<a class="headerlink" href="#welcome-to-sprout-s-documentation" title="Permalink to this headline">¶</a></h1>
|
||||
<p>Contents:</p>
|
||||
<div class="section" id="sprout-c-libraries">
|
||||
<h1>Sprout C++ Libraries<a class="headerlink" href="#sprout-c-libraries" title="Permalink to this headline">¶</a></h1>
|
||||
<div class="toctree-wrapper compound">
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference internal" href="libs/index.html">Sprout C++ Libraries</a><ul>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/libraries.html">Libraries</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/index.html#welcome-to-the-sprout-c-libraries">Welcome to the Sprout C++ Libraries</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/index.html#library-documentation">Library Documentation</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/index.html#project-page">Project page</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/index.html#install">Install</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/index.html#supported-compilers">Supported Compilers</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/index.html#author">Author</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="libs/index.html#copyrights">Copyrights</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="toctree-l1"><a class="reference internal" href="libs/index.html">Libraries</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="welcome-to-the-sprout-c-libraries">
|
||||
<h2>Welcome to the Sprout C++ Libraries<a class="headerlink" href="#welcome-to-the-sprout-c-libraries" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line">C++11 constexpr based Containers, Algorithms, Random numbers, Parsing, Ray tracing, Synthesizer, and others.</div>
|
||||
</div>
|
||||
<div class="section" id="indices-and-tables">
|
||||
<h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h1>
|
||||
</div>
|
||||
<div class="section" id="library-documentation">
|
||||
<h2>Library Documentation<a class="headerlink" href="#library-documentation" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line">The starting point for the documentation of individual libraries is the <a class="reference internal" href="libs/index.html"><em>Libraries page</em></a>, which gives a brief description of each library and links to its documentation.</div>
|
||||
<div class="line"><br /></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="project-page">
|
||||
<h2>Project page<a class="headerlink" href="#project-page" title="Permalink to this headline">¶</a></h2>
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="genindex.html"><em>Index</em></a></li>
|
||||
<li><a class="reference internal" href="py-modindex.html"><em>Module Index</em></a></li>
|
||||
<li><a class="reference internal" href="search.html"><em>Search Page</em></a></li>
|
||||
<li><a class="reference external" href="http://bolero-murakami.github.io/Sprout/">Project page</a></li>
|
||||
<li><a class="reference external" href="https://github.com/bolero-MURAKAMI/Sprout/">Repository (Github)</a></li>
|
||||
<li><a class="reference external" href="http://www.boleros.x0.com/doc/sproutwiki/">Wiki (japanese)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="install">
|
||||
<h2>Install<a class="headerlink" href="#install" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line">Through the path to the directory. <tt class="docutils literal"><span class="pre">/path/to/sprout</span></tt></div>
|
||||
<div class="line">This library can be used in the header only.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="supported-compilers">
|
||||
<h2>Supported Compilers<a class="headerlink" href="#supported-compilers" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Linux:</p>
|
||||
<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</li>
|
||||
<li>Clang, C++11 mode: 3.2, 3.3</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="author">
|
||||
<h2>Author<a class="headerlink" href="#author" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line">Bolero MURAKAMI <a class="reference external" href="mailto:contact-lib%40boleros.x0.com">(Mail)</a></div>
|
||||
<div class="line"><a class="reference external" href="http://bolero-murakami.github.io/">[Website]</a> <a class="reference external" href="https://twitter.com/bolero_murakami">[Twitter]</a> <a class="reference external" href="http://www.facebook.com/genya.murakami">[Facebook]</a> <a class="reference external" href="http://d.hatena.ne.jp/boleros/">[Blog]</a> <a class="reference external" href="https://github.com/bolero-MURAKAMI">[Github]</a> <a class="reference external" href="http://www.slideshare.net/GenyaMurakami">[SlideShare]</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="copyrights">
|
||||
<h2>Copyrights<a class="headerlink" href="#copyrights" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line">Copyright (C) 2011-2013 Bolero MURAKAMI.</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>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -121,7 +159,7 @@
|
|||
<a href="genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="libs/index.html" title="Sprout C++ Libraries"
|
||||
<a href="libs/index.html" title="Libraries"
|
||||
>next</a> |</li>
|
||||
<li><a href="#">Sprout 1.0 documentation</a> »</li>
|
||||
</ul>
|
||||
|
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>adjacent_find — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="count" href="count.html" />
|
||||
<link rel="prev" title="find_first_of" href="find_first_of.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="count.html" title="count"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="find_first_of.html" title="find_first_of"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">adjacent_find</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">count</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/adjacent_find.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/adjacent_find.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -156,7 +155,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="count.html" title="count"
|
||||
|
@ -164,9 +163,8 @@
|
|||
<li class="right" >
|
||||
<a href="find_first_of.html" title="find_first_of"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>all_of — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="all_of_equal" href="all_of_equal.html" />
|
||||
<link rel="prev" title="Sprout.Algorithm" href="index.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="all_of_equal.html" title="all_of_equal"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="index.html" title="Sprout.Algorithm"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">all_of</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">all_of_equal</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/all_of.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/all_of.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -151,7 +150,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="all_of_equal.html" title="all_of_equal"
|
||||
|
@ -159,9 +158,8 @@
|
|||
<li class="right" >
|
||||
<a href="index.html" title="Sprout.Algorithm"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>all_of_equal — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="any_of" href="any_of.html" />
|
||||
<link rel="prev" title="all_of" href="all_of.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="any_of.html" title="any_of"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="all_of.html" title="all_of"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">all_of_equal</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">any_of</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/all_of_equal.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/all_of_equal.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -150,7 +149,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="any_of.html" title="any_of"
|
||||
|
@ -158,9 +157,8 @@
|
|||
<li class="right" >
|
||||
<a href="all_of.html" title="all_of"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>any_of — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="any_of_equal" href="any_of_equal.html" />
|
||||
<link rel="prev" title="all_of_equal" href="all_of_equal.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="any_of_equal.html" title="any_of_equal"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="all_of_equal.html" title="all_of_equal"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">any_of</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">any_of_equal</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/any_of.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/any_of.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -151,7 +150,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="any_of_equal.html" title="any_of_equal"
|
||||
|
@ -159,9 +158,8 @@
|
|||
<li class="right" >
|
||||
<a href="all_of_equal.html" title="all_of_equal"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>any_of_equal — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="none_of" href="none_of.html" />
|
||||
<link rel="prev" title="any_of" href="any_of.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="none_of.html" title="none_of"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="any_of.html" title="any_of"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">any_of_equal</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">none_of</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/any_of_equal.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/any_of_equal.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -150,7 +149,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="none_of.html" title="none_of"
|
||||
|
@ -158,9 +157,8 @@
|
|||
<li class="right" >
|
||||
<a href="any_of.html" title="any_of"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>binary_search — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="is_heap" href="is_heap.html" />
|
||||
<link rel="prev" title="equal_range" href="equal_range.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_heap.html" title="is_heap"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="equal_range.html" title="equal_range"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">binary_search</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -72,12 +71,12 @@
|
|||
title="next chapter">is_heap</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/binary_search.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/binary_search.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -162,7 +161,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_heap.html" title="is_heap"
|
||||
|
@ -170,9 +169,8 @@
|
|||
<li class="right" >
|
||||
<a href="equal_range.html" title="equal_range"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>clamp — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="prev" title="tristate_lexicographical_compare" href="tristate_lexicographical_compare.html" />
|
||||
</head>
|
||||
|
@ -34,20 +34,19 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="tristate_lexicographical_compare.html" title="tristate_lexicographical_compare"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">clamp</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -66,12 +65,12 @@
|
|||
title="previous chapter">tristate_lexicographical_compare</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/clamp.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/clamp.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -161,14 +160,13 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="tristate_lexicographical_compare.html" title="tristate_lexicographical_compare"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>count — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="count_if" href="count_if.html" />
|
||||
<link rel="prev" title="adjacent_find" href="adjacent_find.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="count_if.html" title="count_if"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="adjacent_find.html" title="adjacent_find"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">count</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">count_if</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/count.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/count.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -150,7 +149,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="count_if.html" title="count_if"
|
||||
|
@ -158,9 +157,8 @@
|
|||
<li class="right" >
|
||||
<a href="adjacent_find.html" title="adjacent_find"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>count_if — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="mismatch" href="mismatch.html" />
|
||||
<link rel="prev" title="count" href="count.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="mismatch.html" title="mismatch"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="count.html" title="count"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">count_if</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">mismatch</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/count_if.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/count_if.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -151,7 +150,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="mismatch.html" title="mismatch"
|
||||
|
@ -159,9 +158,8 @@
|
|||
<li class="right" >
|
||||
<a href="count.html" title="count"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>equal — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="is_permutation" href="is_permutation.html" />
|
||||
<link rel="prev" title="mismatch" href="mismatch.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_permutation.html" title="is_permutation"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="mismatch.html" title="mismatch"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">equal</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -72,12 +71,12 @@
|
|||
title="next chapter">is_permutation</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/equal.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/equal.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -173,7 +172,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_permutation.html" title="is_permutation"
|
||||
|
@ -181,9 +180,8 @@
|
|||
<li class="right" >
|
||||
<a href="mismatch.html" title="mismatch"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>equal_range — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="binary_search" href="binary_search.html" />
|
||||
<link rel="prev" title="upper_bound" href="upper_bound.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="binary_search.html" title="binary_search"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="upper_bound.html" title="upper_bound"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">equal_range</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -72,12 +71,12 @@
|
|||
title="next chapter">binary_search</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/equal_range.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/equal_range.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -167,7 +166,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="binary_search.html" title="binary_search"
|
||||
|
@ -175,9 +174,8 @@
|
|||
<li class="right" >
|
||||
<a href="upper_bound.html" title="upper_bound"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>find — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="find_if" href="find_if.html" />
|
||||
<link rel="prev" title="one_of_equal" href="one_of_equal.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_if.html" title="find_if"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="one_of_equal.html" title="one_of_equal"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">find</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">find_if</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/find.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/find.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -152,7 +151,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_if.html" title="find_if"
|
||||
|
@ -160,9 +159,8 @@
|
|||
<li class="right" >
|
||||
<a href="one_of_equal.html" title="one_of_equal"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>find_end — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="find_first_of" href="find_first_of.html" />
|
||||
<link rel="prev" title="find_if_not" href="find_if_not.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_first_of.html" title="find_first_of"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="find_if_not.html" title="find_if_not"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">find_end</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -72,12 +71,12 @@
|
|||
title="next chapter">find_first_of</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/find_end.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/find_end.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -171,7 +170,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_first_of.html" title="find_first_of"
|
||||
|
@ -179,9 +178,8 @@
|
|||
<li class="right" >
|
||||
<a href="find_if_not.html" title="find_if_not"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>find_first_of — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="adjacent_find" href="adjacent_find.html" />
|
||||
<link rel="prev" title="find_end" href="find_end.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="adjacent_find.html" title="adjacent_find"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="find_end.html" title="find_end"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">find_first_of</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -72,12 +71,12 @@
|
|||
title="next chapter">adjacent_find</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/find_first_of.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/find_first_of.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -171,7 +170,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="adjacent_find.html" title="adjacent_find"
|
||||
|
@ -179,9 +178,8 @@
|
|||
<li class="right" >
|
||||
<a href="find_end.html" title="find_end"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>find_if — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="find_if_not" href="find_if_not.html" />
|
||||
<link rel="prev" title="find" href="find.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_if_not.html" title="find_if_not"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="find.html" title="find"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">find_if</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">find_if_not</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/find_if.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/find_if.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -153,7 +152,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_if_not.html" title="find_if_not"
|
||||
|
@ -161,9 +160,8 @@
|
|||
<li class="right" >
|
||||
<a href="find.html" title="find"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>find_if_not — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="find_end" href="find_end.html" />
|
||||
<link rel="prev" title="find_if" href="find_if.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_end.html" title="find_end"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="find_if.html" title="find_if"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">find_if_not</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">find_end</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/find_if_not.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/find_if_not.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -153,7 +152,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="find_end.html" title="find_end"
|
||||
|
@ -161,9 +160,8 @@
|
|||
<li class="right" >
|
||||
<a href="find_if.html" title="find_if"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,23 +10,23 @@
|
|||
|
||||
<title>Sprout.Algorithm — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<link rel="up" title="Libraries" href="../../libraries.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Libraries" href="../index.html" />
|
||||
<link rel="next" title="all_of" href="all_of.html" />
|
||||
<link rel="prev" title="make_common_array" href="../array/make_common_array.html" />
|
||||
</head>
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="all_of.html" title="all_of"
|
||||
|
@ -43,14 +43,13 @@
|
|||
<li class="right" >
|
||||
<a href="../array/make_common_array.html" title="make_common_array"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.0 documentation</a> »</li>
|
||||
<li><a href="../../index.html" >Sprout C++ Libraries</a> »</li>
|
||||
<li><a href="../../libraries.html" accesskey="U">Libraries</a> »</li>
|
||||
<li><a href="../../index.html">Sprout 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" accesskey="U">Libraries</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">Sprout.Algorithm</a><ul>
|
||||
<li><a class="reference internal" href="#non-modifying-sequence-operations">Non-modifying sequence operations</a><ul>
|
||||
|
@ -75,12 +74,12 @@
|
|||
title="next chapter">all_of</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/index.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/index.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -357,7 +356,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="all_of.html" title="all_of"
|
||||
|
@ -365,9 +364,8 @@
|
|||
<li class="right" >
|
||||
<a href="../array/make_common_array.html" title="make_common_array"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer">
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>is_decreasing — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="is_strictly_increasing" href="is_strictly_increasing.html" />
|
||||
<link rel="prev" title="is_increasing" href="is_increasing.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_strictly_increasing.html" title="is_strictly_increasing"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="is_increasing.html" title="is_increasing"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">is_decreasing</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">is_strictly_increasing</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/is_decreasing.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/is_decreasing.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -149,7 +148,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_strictly_increasing.html" title="is_strictly_increasing"
|
||||
|
@ -157,9 +156,8 @@
|
|||
<li class="right" >
|
||||
<a href="is_increasing.html" title="is_increasing"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -10,22 +10,22 @@
|
|||
|
||||
<title>is_heap — Sprout 1.0 documentation</title>
|
||||
|
||||
<link rel="stylesheet" href="../../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: '../../../',
|
||||
URL_ROOT: '../../',
|
||||
VERSION: '1.0',
|
||||
COLLAPSE_INDEX: false,
|
||||
FILE_SUFFIX: '.html',
|
||||
HAS_SOURCE: true
|
||||
};
|
||||
</script>
|
||||
<script type="text/javascript" src="../../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||
<script type="text/javascript" src="../../_static/jquery.js"></script>
|
||||
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
||||
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
||||
<link rel="top" title="Sprout 1.0 documentation" href="../../index.html" />
|
||||
<link rel="up" title="Sprout.Algorithm" href="index.html" />
|
||||
<link rel="next" title="is_heap_until" href="is_heap_until.html" />
|
||||
<link rel="prev" title="binary_search" href="binary_search.html" />
|
||||
|
@ -35,7 +35,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
accesskey="I">index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_heap_until.html" title="is_heap_until"
|
||||
|
@ -43,15 +43,14 @@
|
|||
<li class="right" >
|
||||
<a href="binary_search.html" title="binary_search"
|
||||
accesskey="P">previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" accesskey="U">Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sphinxsidebar">
|
||||
<div class="sphinxsidebarwrapper">
|
||||
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
||||
<ul>
|
||||
<li><a class="reference internal" href="#">is_heap</a><ul>
|
||||
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||
|
@ -71,12 +70,12 @@
|
|||
title="next chapter">is_heap_until</a></p>
|
||||
<h3>This Page</h3>
|
||||
<ul class="this-page-menu">
|
||||
<li><a href="../../../_sources/libs/sprout/algorithm/is_heap.txt"
|
||||
<li><a href="../../_sources/libs/algorithm/is_heap.txt"
|
||||
rel="nofollow">Show Source</a></li>
|
||||
</ul>
|
||||
<div id="searchbox" style="display: none">
|
||||
<h3>Quick search</h3>
|
||||
<form class="search" action="../../../search.html" method="get">
|
||||
<form class="search" action="../../search.html" method="get">
|
||||
<input type="text" name="q" />
|
||||
<input type="submit" value="Go" />
|
||||
<input type="hidden" name="check_keywords" value="yes" />
|
||||
|
@ -153,7 +152,7 @@
|
|||
<h3>Navigation</h3>
|
||||
<ul>
|
||||
<li class="right" style="margin-right: 10px">
|
||||
<a href="../../../genindex.html" title="General Index"
|
||||
<a href="../../genindex.html" title="General Index"
|
||||
>index</a></li>
|
||||
<li class="right" >
|
||||
<a href="is_heap_until.html" title="is_heap_until"
|
||||
|
@ -161,9 +160,8 @@
|
|||
<li class="right" >
|
||||
<a href="binary_search.html" title="binary_search"
|
||||
>previous</a> |</li>
|
||||
<li><a href="../../../index.html">Sprout 1.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 1.0 documentation</a> »</li>
|
||||
<li><a href="../index.html" >Libraries</a> »</li>
|
||||
<li><a href="index.html" >Sprout.Algorithm</a> »</li>
|
||||
</ul>
|
||||
</div>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue