mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
add doc: string comparison
This commit is contained in:
parent
794666afac
commit
5e83aa2c79
24 changed files with 1577 additions and 17 deletions
40
docs/_sources/libs/string/basic_string/operator-equal_to.txt
Normal file
40
docs/_sources/libs/string/basic_string/operator-equal_to.txt
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-equal_to:
|
||||||
|
###############################################################################
|
||||||
|
operator==
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator==(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the containers are equivalent, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("homuhomu");
|
||||||
|
static_assert(x == y, "x is equal to y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
40
docs/_sources/libs/string/basic_string/operator-greater.txt
Normal file
40
docs/_sources/libs/string/basic_string/operator-greater.txt
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-greater:
|
||||||
|
###############################################################################
|
||||||
|
operator>
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator>(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically greater than the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(y > x, "y is greater than x.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-greater_equal:
|
||||||
|
###############################################################################
|
||||||
|
operator>=
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator>=(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically greater than or equal the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(y >= x, "y is greater than or equal to x.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
40
docs/_sources/libs/string/basic_string/operator-less.txt
Normal file
40
docs/_sources/libs/string/basic_string/operator-less.txt
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-less:
|
||||||
|
###############################################################################
|
||||||
|
operator<
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator<(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically less than the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(x < y, "x is less than y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-less_equal:
|
||||||
|
###############################################################################
|
||||||
|
operator<=
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator<=(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically less than or equal the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(x <= y, "x is less than or equal to y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-not_equal_to:
|
||||||
|
###############################################################################
|
||||||
|
operator!=
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator!=(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the containers are not equivalent, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(x != y, "x is not equal to y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
|
@ -7,6 +7,12 @@ Sprout.String
|
||||||
:hidden:
|
:hidden:
|
||||||
|
|
||||||
basic_string/swap-global
|
basic_string/swap-global
|
||||||
|
basic_string/operator-equal_to
|
||||||
|
basic_string/operator-not_equal_to
|
||||||
|
basic_string/operator-less
|
||||||
|
basic_string/operator-greater
|
||||||
|
basic_string/operator-less_equal
|
||||||
|
basic_string/operator-greater_equal
|
||||||
basic_string/std-tuple_size
|
basic_string/std-tuple_size
|
||||||
basic_string/std-tuple_element
|
basic_string/std-tuple_element
|
||||||
basic_string/tuple_get
|
basic_string/tuple_get
|
||||||
|
|
178
docs/libs/string/basic_string/operator-equal_to.html
Normal file
178
docs/libs/string/basic_string/operator-equal_to.html
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
|
||||||
|
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-43764535-1']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<title>operator== — 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" />
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var DOCUMENTATION_OPTIONS = {
|
||||||
|
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="Sprout.String" href="../index.html" />
|
||||||
|
<link rel="next" title="operator!=" href="operator-not_equal_to.html" />
|
||||||
|
<link rel="prev" title="swap" href="swap-global.html" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
accesskey="I">index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-not_equal_to.html" title="operator!="
|
||||||
|
accesskey="N">next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="swap-global.html" title="swap"
|
||||||
|
accesskey="P">previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sphinxsidebar">
|
||||||
|
<div class="sphinxsidebarwrapper">
|
||||||
|
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li><a class="reference internal" href="#">operator==</a><ul>
|
||||||
|
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||||
|
<li><a class="reference internal" href="#returns">Returns</a></li>
|
||||||
|
<li><a class="reference internal" href="#examples">Examples</a></li>
|
||||||
|
<li><a class="reference internal" href="#complexity">Complexity</a></li>
|
||||||
|
<li><a class="reference internal" href="#header">Header</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4>Previous topic</h4>
|
||||||
|
<p class="topless"><a href="swap-global.html"
|
||||||
|
title="previous chapter">swap</a></p>
|
||||||
|
<h4>Next topic</h4>
|
||||||
|
<p class="topless"><a href="operator-not_equal_to.html"
|
||||||
|
title="next chapter">operator!=</a></p>
|
||||||
|
<h3>This Page</h3>
|
||||||
|
<ul class="this-page-menu">
|
||||||
|
<li><a href="../../../_sources/libs/string/basic_string/operator-equal_to.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">
|
||||||
|
<input type="text" name="q" />
|
||||||
|
<input type="submit" value="Go" />
|
||||||
|
<input type="hidden" name="check_keywords" value="yes" />
|
||||||
|
<input type="hidden" name="area" value="default" />
|
||||||
|
</form>
|
||||||
|
<p class="searchtip" style="font-size: 90%">
|
||||||
|
Enter search terms or a module, class or function name.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="document">
|
||||||
|
<div class="documentwrapper">
|
||||||
|
<div class="bodywrapper">
|
||||||
|
<div class="body">
|
||||||
|
|
||||||
|
<div class="section" id="operator">
|
||||||
|
<h1>operator==<a class="headerlink" href="#operator" title="Permalink to this headline">¶</a></h1>
|
||||||
|
<div class="section" id="interface">
|
||||||
|
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o"><</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N1</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N2</span><span class="p">,</span> <span class="k">typename</span> <span class="n">Traits</span><span class="o">></span>
|
||||||
|
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="kt">bool</span>
|
||||||
|
<span class="k">operator</span><span class="o">==</span><span class="p">(</span><span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N1</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N2</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">rhs</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="returns">
|
||||||
|
<h2>Returns<a class="headerlink" href="#returns" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">true if the contents of the containers are equivalent, false otherwise.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="examples">
|
||||||
|
<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="cp">#include <sprout/string.hpp></span>
|
||||||
|
<span class="k">using</span> <span class="k">namespace</span> <span class="n">sprout</span><span class="p">;</span>
|
||||||
|
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">x</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"homuhomu"</span><span class="p">);</span>
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">y</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"homuhomu"</span><span class="p">);</span>
|
||||||
|
<span class="n">static_assert</span><span class="p">(</span><span class="n">x</span> <span class="o">==</span> <span class="n">y</span><span class="p">,</span> <span class="s">"x is equal to y."</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="complexity">
|
||||||
|
<h2>Complexity<a class="headerlink" href="#complexity" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">Recursive function invocations in <em>O(logN)</em> (logarithmic) depth.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="header">
|
||||||
|
<h2>Header<a class="headerlink" href="#header" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line"><tt class="docutils literal"><span class="pre">sprout/string/comparison.hpp</span></tt></div>
|
||||||
|
<div class="line">Convenience header: <tt class="docutils literal"><span class="pre">sprout/string.hpp</span></tt></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clearer"></div>
|
||||||
|
</div>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
>index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-not_equal_to.html" title="operator!="
|
||||||
|
>next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="swap-global.html" title="swap"
|
||||||
|
>previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
© Copyright 2013, Bolero MURAKAMI.
|
||||||
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
178
docs/libs/string/basic_string/operator-greater.html
Normal file
178
docs/libs/string/basic_string/operator-greater.html
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
|
||||||
|
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-43764535-1']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<title>operator> — 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" />
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var DOCUMENTATION_OPTIONS = {
|
||||||
|
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="Sprout.String" href="../index.html" />
|
||||||
|
<link rel="next" title="operator<=" href="operator-less_equal.html" />
|
||||||
|
<link rel="prev" title="operator<" href="operator-less.html" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
accesskey="I">index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less_equal.html" title="operator<="
|
||||||
|
accesskey="N">next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less.html" title="operator<"
|
||||||
|
accesskey="P">previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sphinxsidebar">
|
||||||
|
<div class="sphinxsidebarwrapper">
|
||||||
|
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li><a class="reference internal" href="#">operator></a><ul>
|
||||||
|
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||||
|
<li><a class="reference internal" href="#returns">Returns</a></li>
|
||||||
|
<li><a class="reference internal" href="#examples">Examples</a></li>
|
||||||
|
<li><a class="reference internal" href="#complexity">Complexity</a></li>
|
||||||
|
<li><a class="reference internal" href="#header">Header</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4>Previous topic</h4>
|
||||||
|
<p class="topless"><a href="operator-less.html"
|
||||||
|
title="previous chapter">operator<</a></p>
|
||||||
|
<h4>Next topic</h4>
|
||||||
|
<p class="topless"><a href="operator-less_equal.html"
|
||||||
|
title="next chapter">operator<=</a></p>
|
||||||
|
<h3>This Page</h3>
|
||||||
|
<ul class="this-page-menu">
|
||||||
|
<li><a href="../../../_sources/libs/string/basic_string/operator-greater.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">
|
||||||
|
<input type="text" name="q" />
|
||||||
|
<input type="submit" value="Go" />
|
||||||
|
<input type="hidden" name="check_keywords" value="yes" />
|
||||||
|
<input type="hidden" name="area" value="default" />
|
||||||
|
</form>
|
||||||
|
<p class="searchtip" style="font-size: 90%">
|
||||||
|
Enter search terms or a module, class or function name.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="document">
|
||||||
|
<div class="documentwrapper">
|
||||||
|
<div class="bodywrapper">
|
||||||
|
<div class="body">
|
||||||
|
|
||||||
|
<div class="section" id="operator">
|
||||||
|
<h1>operator><a class="headerlink" href="#operator" title="Permalink to this headline">¶</a></h1>
|
||||||
|
<div class="section" id="interface">
|
||||||
|
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o"><</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N1</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N2</span><span class="p">,</span> <span class="k">typename</span> <span class="n">Traits</span><span class="o">></span>
|
||||||
|
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="kt">bool</span>
|
||||||
|
<span class="k">operator</span><span class="o">></span><span class="p">(</span><span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N1</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N2</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">rhs</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="returns">
|
||||||
|
<h2>Returns<a class="headerlink" href="#returns" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">true if the contents of the lhs are lexicographically greater than the contents of rhs, false otherwise.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="examples">
|
||||||
|
<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="cp">#include <sprout/string.hpp></span>
|
||||||
|
<span class="k">using</span> <span class="k">namespace</span> <span class="n">sprout</span><span class="p">;</span>
|
||||||
|
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">x</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"homuhomu"</span><span class="p">);</span>
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">y</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"madocchi"</span><span class="p">);</span>
|
||||||
|
<span class="n">static_assert</span><span class="p">(</span><span class="n">y</span> <span class="o">></span> <span class="n">x</span><span class="p">,</span> <span class="s">"y is greater than x."</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="complexity">
|
||||||
|
<h2>Complexity<a class="headerlink" href="#complexity" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">Recursive function invocations in <em>O(logN)</em> (logarithmic) depth.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="header">
|
||||||
|
<h2>Header<a class="headerlink" href="#header" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line"><tt class="docutils literal"><span class="pre">sprout/string/comparison.hpp</span></tt></div>
|
||||||
|
<div class="line">Convenience header: <tt class="docutils literal"><span class="pre">sprout/string.hpp</span></tt></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clearer"></div>
|
||||||
|
</div>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
>index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less_equal.html" title="operator<="
|
||||||
|
>next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less.html" title="operator<"
|
||||||
|
>previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
© Copyright 2013, Bolero MURAKAMI.
|
||||||
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
178
docs/libs/string/basic_string/operator-greater_equal.html
Normal file
178
docs/libs/string/basic_string/operator-greater_equal.html
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
|
||||||
|
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-43764535-1']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<title>operator>= — 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" />
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var DOCUMENTATION_OPTIONS = {
|
||||||
|
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="Sprout.String" href="../index.html" />
|
||||||
|
<link rel="next" title="std::tuple_size" href="std-tuple_size.html" />
|
||||||
|
<link rel="prev" title="operator<=" href="operator-less_equal.html" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
accesskey="I">index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="std-tuple_size.html" title="std::tuple_size"
|
||||||
|
accesskey="N">next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less_equal.html" title="operator<="
|
||||||
|
accesskey="P">previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sphinxsidebar">
|
||||||
|
<div class="sphinxsidebarwrapper">
|
||||||
|
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li><a class="reference internal" href="#">operator>=</a><ul>
|
||||||
|
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||||
|
<li><a class="reference internal" href="#returns">Returns</a></li>
|
||||||
|
<li><a class="reference internal" href="#examples">Examples</a></li>
|
||||||
|
<li><a class="reference internal" href="#complexity">Complexity</a></li>
|
||||||
|
<li><a class="reference internal" href="#header">Header</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4>Previous topic</h4>
|
||||||
|
<p class="topless"><a href="operator-less_equal.html"
|
||||||
|
title="previous chapter">operator<=</a></p>
|
||||||
|
<h4>Next topic</h4>
|
||||||
|
<p class="topless"><a href="std-tuple_size.html"
|
||||||
|
title="next chapter">std::tuple_size</a></p>
|
||||||
|
<h3>This Page</h3>
|
||||||
|
<ul class="this-page-menu">
|
||||||
|
<li><a href="../../../_sources/libs/string/basic_string/operator-greater_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">
|
||||||
|
<input type="text" name="q" />
|
||||||
|
<input type="submit" value="Go" />
|
||||||
|
<input type="hidden" name="check_keywords" value="yes" />
|
||||||
|
<input type="hidden" name="area" value="default" />
|
||||||
|
</form>
|
||||||
|
<p class="searchtip" style="font-size: 90%">
|
||||||
|
Enter search terms or a module, class or function name.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="document">
|
||||||
|
<div class="documentwrapper">
|
||||||
|
<div class="bodywrapper">
|
||||||
|
<div class="body">
|
||||||
|
|
||||||
|
<div class="section" id="operator">
|
||||||
|
<h1>operator>=<a class="headerlink" href="#operator" title="Permalink to this headline">¶</a></h1>
|
||||||
|
<div class="section" id="interface">
|
||||||
|
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o"><</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N1</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N2</span><span class="p">,</span> <span class="k">typename</span> <span class="n">Traits</span><span class="o">></span>
|
||||||
|
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="kt">bool</span>
|
||||||
|
<span class="k">operator</span><span class="o">>=</span><span class="p">(</span><span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N1</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N2</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">rhs</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="returns">
|
||||||
|
<h2>Returns<a class="headerlink" href="#returns" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">true if the contents of the lhs are lexicographically greater than or equal the contents of rhs, false otherwise.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="examples">
|
||||||
|
<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="cp">#include <sprout/string.hpp></span>
|
||||||
|
<span class="k">using</span> <span class="k">namespace</span> <span class="n">sprout</span><span class="p">;</span>
|
||||||
|
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">x</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"homuhomu"</span><span class="p">);</span>
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">y</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"madocchi"</span><span class="p">);</span>
|
||||||
|
<span class="n">static_assert</span><span class="p">(</span><span class="n">y</span> <span class="o">>=</span> <span class="n">x</span><span class="p">,</span> <span class="s">"y is greater than or equal to x."</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="complexity">
|
||||||
|
<h2>Complexity<a class="headerlink" href="#complexity" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">Recursive function invocations in <em>O(logN)</em> (logarithmic) depth.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="header">
|
||||||
|
<h2>Header<a class="headerlink" href="#header" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line"><tt class="docutils literal"><span class="pre">sprout/string/comparison.hpp</span></tt></div>
|
||||||
|
<div class="line">Convenience header: <tt class="docutils literal"><span class="pre">sprout/string.hpp</span></tt></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clearer"></div>
|
||||||
|
</div>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
>index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="std-tuple_size.html" title="std::tuple_size"
|
||||||
|
>next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less_equal.html" title="operator<="
|
||||||
|
>previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
© Copyright 2013, Bolero MURAKAMI.
|
||||||
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
178
docs/libs/string/basic_string/operator-less.html
Normal file
178
docs/libs/string/basic_string/operator-less.html
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
|
||||||
|
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-43764535-1']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<title>operator< — 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" />
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var DOCUMENTATION_OPTIONS = {
|
||||||
|
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="Sprout.String" href="../index.html" />
|
||||||
|
<link rel="next" title="operator>" href="operator-greater.html" />
|
||||||
|
<link rel="prev" title="operator!=" href="operator-not_equal_to.html" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
accesskey="I">index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-greater.html" title="operator>"
|
||||||
|
accesskey="N">next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-not_equal_to.html" title="operator!="
|
||||||
|
accesskey="P">previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sphinxsidebar">
|
||||||
|
<div class="sphinxsidebarwrapper">
|
||||||
|
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li><a class="reference internal" href="#">operator<</a><ul>
|
||||||
|
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||||
|
<li><a class="reference internal" href="#returns">Returns</a></li>
|
||||||
|
<li><a class="reference internal" href="#examples">Examples</a></li>
|
||||||
|
<li><a class="reference internal" href="#complexity">Complexity</a></li>
|
||||||
|
<li><a class="reference internal" href="#header">Header</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4>Previous topic</h4>
|
||||||
|
<p class="topless"><a href="operator-not_equal_to.html"
|
||||||
|
title="previous chapter">operator!=</a></p>
|
||||||
|
<h4>Next topic</h4>
|
||||||
|
<p class="topless"><a href="operator-greater.html"
|
||||||
|
title="next chapter">operator></a></p>
|
||||||
|
<h3>This Page</h3>
|
||||||
|
<ul class="this-page-menu">
|
||||||
|
<li><a href="../../../_sources/libs/string/basic_string/operator-less.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">
|
||||||
|
<input type="text" name="q" />
|
||||||
|
<input type="submit" value="Go" />
|
||||||
|
<input type="hidden" name="check_keywords" value="yes" />
|
||||||
|
<input type="hidden" name="area" value="default" />
|
||||||
|
</form>
|
||||||
|
<p class="searchtip" style="font-size: 90%">
|
||||||
|
Enter search terms or a module, class or function name.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="document">
|
||||||
|
<div class="documentwrapper">
|
||||||
|
<div class="bodywrapper">
|
||||||
|
<div class="body">
|
||||||
|
|
||||||
|
<div class="section" id="operator">
|
||||||
|
<h1>operator<<a class="headerlink" href="#operator" title="Permalink to this headline">¶</a></h1>
|
||||||
|
<div class="section" id="interface">
|
||||||
|
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o"><</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N1</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N2</span><span class="p">,</span> <span class="k">typename</span> <span class="n">Traits</span><span class="o">></span>
|
||||||
|
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="kt">bool</span>
|
||||||
|
<span class="k">operator</span><span class="o"><</span><span class="p">(</span><span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N1</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N2</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">rhs</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="returns">
|
||||||
|
<h2>Returns<a class="headerlink" href="#returns" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">true if the contents of the lhs are lexicographically less than the contents of rhs, false otherwise.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="examples">
|
||||||
|
<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="cp">#include <sprout/string.hpp></span>
|
||||||
|
<span class="k">using</span> <span class="k">namespace</span> <span class="n">sprout</span><span class="p">;</span>
|
||||||
|
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">x</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"homuhomu"</span><span class="p">);</span>
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">y</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"madocchi"</span><span class="p">);</span>
|
||||||
|
<span class="n">static_assert</span><span class="p">(</span><span class="n">x</span> <span class="o"><</span> <span class="n">y</span><span class="p">,</span> <span class="s">"x is less than y."</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="complexity">
|
||||||
|
<h2>Complexity<a class="headerlink" href="#complexity" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">Recursive function invocations in <em>O(logN)</em> (logarithmic) depth.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="header">
|
||||||
|
<h2>Header<a class="headerlink" href="#header" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line"><tt class="docutils literal"><span class="pre">sprout/string/comparison.hpp</span></tt></div>
|
||||||
|
<div class="line">Convenience header: <tt class="docutils literal"><span class="pre">sprout/string.hpp</span></tt></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clearer"></div>
|
||||||
|
</div>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
>index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-greater.html" title="operator>"
|
||||||
|
>next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-not_equal_to.html" title="operator!="
|
||||||
|
>previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
© Copyright 2013, Bolero MURAKAMI.
|
||||||
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
178
docs/libs/string/basic_string/operator-less_equal.html
Normal file
178
docs/libs/string/basic_string/operator-less_equal.html
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
|
||||||
|
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-43764535-1']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<title>operator<= — 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" />
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var DOCUMENTATION_OPTIONS = {
|
||||||
|
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="Sprout.String" href="../index.html" />
|
||||||
|
<link rel="next" title="operator>=" href="operator-greater_equal.html" />
|
||||||
|
<link rel="prev" title="operator>" href="operator-greater.html" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
accesskey="I">index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-greater_equal.html" title="operator>="
|
||||||
|
accesskey="N">next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-greater.html" title="operator>"
|
||||||
|
accesskey="P">previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sphinxsidebar">
|
||||||
|
<div class="sphinxsidebarwrapper">
|
||||||
|
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li><a class="reference internal" href="#">operator<=</a><ul>
|
||||||
|
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||||
|
<li><a class="reference internal" href="#returns">Returns</a></li>
|
||||||
|
<li><a class="reference internal" href="#examples">Examples</a></li>
|
||||||
|
<li><a class="reference internal" href="#complexity">Complexity</a></li>
|
||||||
|
<li><a class="reference internal" href="#header">Header</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4>Previous topic</h4>
|
||||||
|
<p class="topless"><a href="operator-greater.html"
|
||||||
|
title="previous chapter">operator></a></p>
|
||||||
|
<h4>Next topic</h4>
|
||||||
|
<p class="topless"><a href="operator-greater_equal.html"
|
||||||
|
title="next chapter">operator>=</a></p>
|
||||||
|
<h3>This Page</h3>
|
||||||
|
<ul class="this-page-menu">
|
||||||
|
<li><a href="../../../_sources/libs/string/basic_string/operator-less_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">
|
||||||
|
<input type="text" name="q" />
|
||||||
|
<input type="submit" value="Go" />
|
||||||
|
<input type="hidden" name="check_keywords" value="yes" />
|
||||||
|
<input type="hidden" name="area" value="default" />
|
||||||
|
</form>
|
||||||
|
<p class="searchtip" style="font-size: 90%">
|
||||||
|
Enter search terms or a module, class or function name.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="document">
|
||||||
|
<div class="documentwrapper">
|
||||||
|
<div class="bodywrapper">
|
||||||
|
<div class="body">
|
||||||
|
|
||||||
|
<div class="section" id="operator">
|
||||||
|
<h1>operator<=<a class="headerlink" href="#operator" title="Permalink to this headline">¶</a></h1>
|
||||||
|
<div class="section" id="interface">
|
||||||
|
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o"><</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N1</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N2</span><span class="p">,</span> <span class="k">typename</span> <span class="n">Traits</span><span class="o">></span>
|
||||||
|
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="kt">bool</span>
|
||||||
|
<span class="k">operator</span><span class="o"><=</span><span class="p">(</span><span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N1</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N2</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">rhs</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="returns">
|
||||||
|
<h2>Returns<a class="headerlink" href="#returns" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">true if the contents of the lhs are lexicographically less than or equal the contents of rhs, false otherwise.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="examples">
|
||||||
|
<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="cp">#include <sprout/string.hpp></span>
|
||||||
|
<span class="k">using</span> <span class="k">namespace</span> <span class="n">sprout</span><span class="p">;</span>
|
||||||
|
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">x</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"homuhomu"</span><span class="p">);</span>
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">y</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"madocchi"</span><span class="p">);</span>
|
||||||
|
<span class="n">static_assert</span><span class="p">(</span><span class="n">x</span> <span class="o"><=</span> <span class="n">y</span><span class="p">,</span> <span class="s">"x is less than or equal to y."</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="complexity">
|
||||||
|
<h2>Complexity<a class="headerlink" href="#complexity" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">Recursive function invocations in <em>O(logN)</em> (logarithmic) depth.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="header">
|
||||||
|
<h2>Header<a class="headerlink" href="#header" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line"><tt class="docutils literal"><span class="pre">sprout/string/comparison.hpp</span></tt></div>
|
||||||
|
<div class="line">Convenience header: <tt class="docutils literal"><span class="pre">sprout/string.hpp</span></tt></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clearer"></div>
|
||||||
|
</div>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
>index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-greater_equal.html" title="operator>="
|
||||||
|
>next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-greater.html" title="operator>"
|
||||||
|
>previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
© Copyright 2013, Bolero MURAKAMI.
|
||||||
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
178
docs/libs/string/basic_string/operator-not_equal_to.html
Normal file
178
docs/libs/string/basic_string/operator-not_equal_to.html
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
|
||||||
|
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-43764535-1']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<title>operator!= — 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" />
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var DOCUMENTATION_OPTIONS = {
|
||||||
|
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="Sprout.String" href="../index.html" />
|
||||||
|
<link rel="next" title="operator<" href="operator-less.html" />
|
||||||
|
<link rel="prev" title="operator==" href="operator-equal_to.html" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
accesskey="I">index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less.html" title="operator<"
|
||||||
|
accesskey="N">next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-equal_to.html" title="operator=="
|
||||||
|
accesskey="P">previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="sphinxsidebar">
|
||||||
|
<div class="sphinxsidebarwrapper">
|
||||||
|
<h3><a href="../../../index.html">Table Of Contents</a></h3>
|
||||||
|
<ul>
|
||||||
|
<li><a class="reference internal" href="#">operator!=</a><ul>
|
||||||
|
<li><a class="reference internal" href="#interface">Interface</a></li>
|
||||||
|
<li><a class="reference internal" href="#returns">Returns</a></li>
|
||||||
|
<li><a class="reference internal" href="#examples">Examples</a></li>
|
||||||
|
<li><a class="reference internal" href="#complexity">Complexity</a></li>
|
||||||
|
<li><a class="reference internal" href="#header">Header</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4>Previous topic</h4>
|
||||||
|
<p class="topless"><a href="operator-equal_to.html"
|
||||||
|
title="previous chapter">operator==</a></p>
|
||||||
|
<h4>Next topic</h4>
|
||||||
|
<p class="topless"><a href="operator-less.html"
|
||||||
|
title="next chapter">operator<</a></p>
|
||||||
|
<h3>This Page</h3>
|
||||||
|
<ul class="this-page-menu">
|
||||||
|
<li><a href="../../../_sources/libs/string/basic_string/operator-not_equal_to.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">
|
||||||
|
<input type="text" name="q" />
|
||||||
|
<input type="submit" value="Go" />
|
||||||
|
<input type="hidden" name="check_keywords" value="yes" />
|
||||||
|
<input type="hidden" name="area" value="default" />
|
||||||
|
</form>
|
||||||
|
<p class="searchtip" style="font-size: 90%">
|
||||||
|
Enter search terms or a module, class or function name.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="document">
|
||||||
|
<div class="documentwrapper">
|
||||||
|
<div class="bodywrapper">
|
||||||
|
<div class="body">
|
||||||
|
|
||||||
|
<div class="section" id="operator">
|
||||||
|
<h1>operator!=<a class="headerlink" href="#operator" title="Permalink to this headline">¶</a></h1>
|
||||||
|
<div class="section" id="interface">
|
||||||
|
<h2>Interface<a class="headerlink" href="#interface" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="k">template</span><span class="o"><</span><span class="k">typename</span> <span class="n">T</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N1</span><span class="p">,</span> <span class="n">std</span><span class="o">::</span><span class="n">size_t</span> <span class="n">N2</span><span class="p">,</span> <span class="k">typename</span> <span class="n">Traits</span><span class="o">></span>
|
||||||
|
<span class="kr">inline</span> <span class="n">SPROUT_CONSTEXPR</span> <span class="kt">bool</span>
|
||||||
|
<span class="k">operator</span><span class="o">!=</span><span class="p">(</span><span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N1</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">sprout</span><span class="o">::</span><span class="n">basic_string</span><span class="o"><</span><span class="n">T</span><span class="p">,</span> <span class="n">N2</span><span class="p">,</span> <span class="n">Traits</span><span class="o">></span> <span class="k">const</span><span class="o">&</span> <span class="n">rhs</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="returns">
|
||||||
|
<h2>Returns<a class="headerlink" href="#returns" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">true if the contents of the containers are not equivalent, false otherwise.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="examples">
|
||||||
|
<h2>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="highlight-c++"><div class="highlight"><pre><span class="cp">#include <sprout/string.hpp></span>
|
||||||
|
<span class="k">using</span> <span class="k">namespace</span> <span class="n">sprout</span><span class="p">;</span>
|
||||||
|
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">x</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"homuhomu"</span><span class="p">);</span>
|
||||||
|
<span class="n">SPROUT_STATIC_CONSTEXPR</span> <span class="k">auto</span> <span class="n">y</span> <span class="o">=</span> <span class="n">string</span><span class="o"><</span><span class="mi">8</span><span class="o">></span><span class="p">(</span><span class="s">"madocchi"</span><span class="p">);</span>
|
||||||
|
<span class="n">static_assert</span><span class="p">(</span><span class="n">x</span> <span class="o">!=</span> <span class="n">y</span><span class="p">,</span> <span class="s">"x is not equal to y."</span><span class="p">);</span>
|
||||||
|
</pre></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="complexity">
|
||||||
|
<h2>Complexity<a class="headerlink" href="#complexity" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line">Recursive function invocations in <em>O(logN)</em> (logarithmic) depth.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="header">
|
||||||
|
<h2>Header<a class="headerlink" href="#header" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<div class="line-block">
|
||||||
|
<div class="line"><tt class="docutils literal"><span class="pre">sprout/string/comparison.hpp</span></tt></div>
|
||||||
|
<div class="line">Convenience header: <tt class="docutils literal"><span class="pre">sprout/string.hpp</span></tt></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clearer"></div>
|
||||||
|
</div>
|
||||||
|
<div class="related">
|
||||||
|
<h3>Navigation</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="right" style="margin-right: 10px">
|
||||||
|
<a href="../../../genindex.html" title="General Index"
|
||||||
|
>index</a></li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-less.html" title="operator<"
|
||||||
|
>next</a> |</li>
|
||||||
|
<li class="right" >
|
||||||
|
<a href="operator-equal_to.html" title="operator=="
|
||||||
|
>previous</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.String</a> »</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
© Copyright 2013, Bolero MURAKAMI.
|
||||||
|
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -39,7 +39,7 @@
|
||||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||||
<link rel="up" title="Sprout.String" href="../index.html" />
|
<link rel="up" title="Sprout.String" href="../index.html" />
|
||||||
<link rel="next" title="std::tuple_element" href="std-tuple_element.html" />
|
<link rel="next" title="std::tuple_element" href="std-tuple_element.html" />
|
||||||
<link rel="prev" title="swap" href="swap-global.html" />
|
<link rel="prev" title="operator>=" href="operator-greater_equal.html" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="related">
|
<div class="related">
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
<a href="std-tuple_element.html" title="std::tuple_element"
|
<a href="std-tuple_element.html" title="std::tuple_element"
|
||||||
accesskey="N">next</a> |</li>
|
accesskey="N">next</a> |</li>
|
||||||
<li class="right" >
|
<li class="right" >
|
||||||
<a href="swap-global.html" title="swap"
|
<a href="operator-greater_equal.html" title="operator>="
|
||||||
accesskey="P">previous</a> |</li>
|
accesskey="P">previous</a> |</li>
|
||||||
<li><a href="../../../index.html">Sprout 1.0 documentation</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" >Libraries</a> »</li>
|
||||||
|
@ -74,8 +74,8 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h4>Previous topic</h4>
|
<h4>Previous topic</h4>
|
||||||
<p class="topless"><a href="swap-global.html"
|
<p class="topless"><a href="operator-greater_equal.html"
|
||||||
title="previous chapter">swap</a></p>
|
title="previous chapter">operator>=</a></p>
|
||||||
<h4>Next topic</h4>
|
<h4>Next topic</h4>
|
||||||
<p class="topless"><a href="std-tuple_element.html"
|
<p class="topless"><a href="std-tuple_element.html"
|
||||||
title="next chapter">std::tuple_element</a></p>
|
title="next chapter">std::tuple_element</a></p>
|
||||||
|
@ -167,7 +167,7 @@
|
||||||
<a href="std-tuple_element.html" title="std::tuple_element"
|
<a href="std-tuple_element.html" title="std::tuple_element"
|
||||||
>next</a> |</li>
|
>next</a> |</li>
|
||||||
<li class="right" >
|
<li class="right" >
|
||||||
<a href="swap-global.html" title="swap"
|
<a href="operator-greater_equal.html" title="operator>="
|
||||||
>previous</a> |</li>
|
>previous</a> |</li>
|
||||||
<li><a href="../../../index.html">Sprout 1.0 documentation</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" >Libraries</a> »</li>
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
<script type="text/javascript" src="../../../_static/doctools.js"></script>
|
||||||
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
<link rel="top" title="Sprout 1.0 documentation" href="../../../index.html" />
|
||||||
<link rel="up" title="Sprout.String" href="../index.html" />
|
<link rel="up" title="Sprout.String" href="../index.html" />
|
||||||
<link rel="next" title="std::tuple_size" href="std-tuple_size.html" />
|
<link rel="next" title="operator==" href="operator-equal_to.html" />
|
||||||
<link rel="prev" title="Sprout.String" href="../index.html" />
|
<link rel="prev" title="Sprout.String" href="../index.html" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
<a href="../../../genindex.html" title="General Index"
|
<a href="../../../genindex.html" title="General Index"
|
||||||
accesskey="I">index</a></li>
|
accesskey="I">index</a></li>
|
||||||
<li class="right" >
|
<li class="right" >
|
||||||
<a href="std-tuple_size.html" title="std::tuple_size"
|
<a href="operator-equal_to.html" title="operator=="
|
||||||
accesskey="N">next</a> |</li>
|
accesskey="N">next</a> |</li>
|
||||||
<li class="right" >
|
<li class="right" >
|
||||||
<a href="../index.html" title="Sprout.String"
|
<a href="../index.html" title="Sprout.String"
|
||||||
|
@ -78,8 +78,8 @@
|
||||||
<p class="topless"><a href="../index.html"
|
<p class="topless"><a href="../index.html"
|
||||||
title="previous chapter">Sprout.String</a></p>
|
title="previous chapter">Sprout.String</a></p>
|
||||||
<h4>Next topic</h4>
|
<h4>Next topic</h4>
|
||||||
<p class="topless"><a href="std-tuple_size.html"
|
<p class="topless"><a href="operator-equal_to.html"
|
||||||
title="next chapter">std::tuple_size</a></p>
|
title="next chapter">operator==</a></p>
|
||||||
<h3>This Page</h3>
|
<h3>This Page</h3>
|
||||||
<ul class="this-page-menu">
|
<ul class="this-page-menu">
|
||||||
<li><a href="../../../_sources/libs/string/basic_string/swap-global.txt"
|
<li><a href="../../../_sources/libs/string/basic_string/swap-global.txt"
|
||||||
|
@ -170,7 +170,7 @@
|
||||||
<a href="../../../genindex.html" title="General Index"
|
<a href="../../../genindex.html" title="General Index"
|
||||||
>index</a></li>
|
>index</a></li>
|
||||||
<li class="right" >
|
<li class="right" >
|
||||||
<a href="std-tuple_size.html" title="std::tuple_size"
|
<a href="operator-equal_to.html" title="operator=="
|
||||||
>next</a> |</li>
|
>next</a> |</li>
|
||||||
<li class="right" >
|
<li class="right" >
|
||||||
<a href="../index.html" title="Sprout.String"
|
<a href="../index.html" title="Sprout.String"
|
||||||
|
|
|
@ -225,22 +225,22 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody valign="top">
|
<tbody valign="top">
|
||||||
<tr class="row-even"><td><tt class="xref doc docutils literal"><span class="pre">operator==</span></tt></td>
|
<tr class="row-even"><td><a class="reference internal" href="basic_string/operator-equal_to.html"><em>operator==</em></a></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="row-odd"><td><tt class="xref doc docutils literal"><span class="pre">operator!=</span></tt></td>
|
<tr class="row-odd"><td><a class="reference internal" href="basic_string/operator-not_equal_to.html"><em>operator!=</em></a></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="row-even"><td><tt class="xref doc docutils literal"><span class="pre">operator<</span></tt></td>
|
<tr class="row-even"><td><a class="reference internal" href="basic_string/operator-less.html"><em>operator<</em></a></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="row-odd"><td><tt class="xref doc docutils literal"><span class="pre">operator></span></tt></td>
|
<tr class="row-odd"><td><a class="reference internal" href="basic_string/operator-greater.html"><em>operator></em></a></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="row-even"><td><tt class="xref doc docutils literal"><span class="pre">operator<=</span></tt></td>
|
<tr class="row-even"><td><a class="reference internal" href="basic_string/operator-less_equal.html"><em>operator<=</em></a></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="row-odd"><td><tt class="xref doc docutils literal"><span class="pre">operator>=</span></tt></td>
|
<tr class="row-odd"><td><a class="reference internal" href="basic_string/operator-greater_equal.html"><em>operator>=</em></a></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
File diff suppressed because one or more lines are too long
40
source/libs/string/basic_string/operator-equal_to.rst
Normal file
40
source/libs/string/basic_string/operator-equal_to.rst
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-equal_to:
|
||||||
|
###############################################################################
|
||||||
|
operator==
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator==(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the containers are equivalent, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("homuhomu");
|
||||||
|
static_assert(x == y, "x is equal to y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
40
source/libs/string/basic_string/operator-greater.rst
Normal file
40
source/libs/string/basic_string/operator-greater.rst
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-greater:
|
||||||
|
###############################################################################
|
||||||
|
operator>
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator>(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically greater than the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(y > x, "y is greater than x.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
40
source/libs/string/basic_string/operator-greater_equal.rst
Normal file
40
source/libs/string/basic_string/operator-greater_equal.rst
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-greater_equal:
|
||||||
|
###############################################################################
|
||||||
|
operator>=
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator>=(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically greater than or equal the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(y >= x, "y is greater than or equal to x.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
40
source/libs/string/basic_string/operator-less.rst
Normal file
40
source/libs/string/basic_string/operator-less.rst
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-less:
|
||||||
|
###############################################################################
|
||||||
|
operator<
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator<(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically less than the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(x < y, "x is less than y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
40
source/libs/string/basic_string/operator-less_equal.rst
Normal file
40
source/libs/string/basic_string/operator-less_equal.rst
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-less_equal:
|
||||||
|
###############################################################################
|
||||||
|
operator<=
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator<=(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the lhs are lexicographically less than or equal the contents of rhs, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(x <= y, "x is less than or equal to y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
40
source/libs/string/basic_string/operator-not_equal_to.rst
Normal file
40
source/libs/string/basic_string/operator-not_equal_to.rst
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
.. _sprout-string-basic_string-operator-not_equal_to:
|
||||||
|
###############################################################################
|
||||||
|
operator!=
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Interface
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||||||
|
inline SPROUT_CONSTEXPR bool
|
||||||
|
operator!=(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||||||
|
|
||||||
|
Returns
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| true if the contents of the containers are not equivalent, false otherwise.
|
||||||
|
|
||||||
|
Examples
|
||||||
|
========================================
|
||||||
|
.. sourcecode:: c++
|
||||||
|
|
||||||
|
#include <sprout/string.hpp>
|
||||||
|
using namespace sprout;
|
||||||
|
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||||||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||||||
|
static_assert(x != y, "x is not equal to y.");
|
||||||
|
|
||||||
|
Complexity
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||||
|
|
||||||
|
Header
|
||||||
|
========================================
|
||||||
|
|
||||||
|
| ``sprout/string/comparison.hpp``
|
||||||
|
| Convenience header: ``sprout/string.hpp``
|
||||||
|
|
|
@ -7,6 +7,12 @@ Sprout.String
|
||||||
:hidden:
|
:hidden:
|
||||||
|
|
||||||
basic_string/swap-global
|
basic_string/swap-global
|
||||||
|
basic_string/operator-equal_to
|
||||||
|
basic_string/operator-not_equal_to
|
||||||
|
basic_string/operator-less
|
||||||
|
basic_string/operator-greater
|
||||||
|
basic_string/operator-less_equal
|
||||||
|
basic_string/operator-greater_equal
|
||||||
basic_string/std-tuple_size
|
basic_string/std-tuple_size
|
||||||
basic_string/std-tuple_element
|
basic_string/std-tuple_element
|
||||||
basic_string/tuple_get
|
basic_string/tuple_get
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue