mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-02-15 10:15:49 +00:00
fix doc: tristate_lexicographical_compare
This commit is contained in:
parent
2766cb0ca5
commit
32f501da05
5 changed files with 16 additions and 12 deletions
|
@ -45,7 +45,7 @@ Returns
|
||||||
| Otherwise, a value greater than zero if the sequence of elements defined by the range [first1,last1) is lexicographically greater than the sequence of elements defined by the range [first2,last2).
|
| Otherwise, a value greater than zero if the sequence of elements defined by the range [first1,last1) is lexicographically greater than the sequence of elements defined by the range [first2,last2).
|
||||||
| Otherwise, returns a zero value.
|
| Otherwise, returns a zero value.
|
||||||
|
|
||||||
| If the delimiter version, last1 and last2 are replaced by ``find(first1, last1, delim1)`` and ``find(first2,last2,delim2)``.
|
| If the delimiter version, last1 and last2 the following corresponding transformations: ``find_if(first1, last1, bind2nd(equiv(), delim1))`` and ``find_if(first2, last2, bind2nd(equiv(), delim1))``, ``find_if(first1, last1, bind2nd(equiv(comp), delim1))`` and ``find_if(first2, last2, bind2nd(equiv(comp), delim1))``.
|
||||||
|
|
||||||
Remarks
|
Remarks
|
||||||
========================================
|
========================================
|
||||||
|
|
|
@ -140,7 +140,7 @@
|
||||||
<div class="line">Otherwise, returns a zero value.</div>
|
<div class="line">Otherwise, returns a zero value.</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="line-block">
|
<div class="line-block">
|
||||||
<div class="line">If the delimiter version, last1 and last2 are replaced by <tt class="docutils literal"><span class="pre">find(first1,</span> <span class="pre">last1,</span> <span class="pre">delim1)</span></tt> and <tt class="docutils literal"><span class="pre">find(first2,last2,delim2)</span></tt>.</div>
|
<div class="line">If the delimiter version, last1 and last2 the following corresponding transformations: <tt class="docutils literal"><span class="pre">find_if(first1,</span> <span class="pre">last1,</span> <span class="pre">bind2nd(equiv(),</span> <span class="pre">delim1))</span></tt> and <tt class="docutils literal"><span class="pre">find_if(first2,</span> <span class="pre">last2,</span> <span class="pre">bind2nd(equiv(),</span> <span class="pre">delim1))</span></tt>, <tt class="docutils literal"><span class="pre">find_if(first1,</span> <span class="pre">last1,</span> <span class="pre">bind2nd(equiv(comp),</span> <span class="pre">delim1))</span></tt> and <tt class="docutils literal"><span class="pre">find_if(first2,</span> <span class="pre">last2,</span> <span class="pre">bind2nd(equiv(comp),</span> <span class="pre">delim1))</span></tt>.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="remarks">
|
<div class="section" id="remarks">
|
||||||
|
|
File diff suppressed because one or more lines are too long
20
index.html
20
index.html
|
@ -46,14 +46,18 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<blockquote>
|
<div class="row">
|
||||||
<p>Und wenn du lange in einen constexpr blickst, blickt der constexpr auch in dich hinein.</p>
|
<blockquote class="pull-right">
|
||||||
<small>Certain philosopher</small>
|
<p>Und wenn du lange in einen constexpr blickst, blickt der constexpr auch in dich hinein.</p>
|
||||||
</blockquote>
|
<small>Certain philosopher</small>
|
||||||
<blockquote>
|
</blockquote>
|
||||||
<p>constexpr is Mandatory. Citizen, are you constexpr?</p>
|
<div class="row">
|
||||||
<small>Certain computer</small>
|
</div>
|
||||||
</blockquote>
|
<blockquote class="pull-right">
|
||||||
|
<p>constexpr is Mandatory. Citizen, are you constexpr?</p>
|
||||||
|
<small>Certain computer</small>
|
||||||
|
</blockquote>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Try now!</h2>
|
<h2>Try now!</h2>
|
||||||
<p><a href="http://melpon.org/wandbox/" target="_blank">Wandbox</a> is an online compiler that you can use the Sprout C++ Libraries.</p>
|
<p><a href="http://melpon.org/wandbox/" target="_blank">Wandbox</a> is an online compiler that you can use the Sprout C++ Libraries.</p>
|
||||||
|
|
|
@ -45,7 +45,7 @@ Returns
|
||||||
| Otherwise, a value greater than zero if the sequence of elements defined by the range [first1,last1) is lexicographically greater than the sequence of elements defined by the range [first2,last2).
|
| Otherwise, a value greater than zero if the sequence of elements defined by the range [first1,last1) is lexicographically greater than the sequence of elements defined by the range [first2,last2).
|
||||||
| Otherwise, returns a zero value.
|
| Otherwise, returns a zero value.
|
||||||
|
|
||||||
| If the delimiter version, last1 and last2 are replaced by ``find(first1, last1, delim1)`` and ``find(first2,last2,delim2)``.
|
| If the delimiter version, last1 and last2 the following corresponding transformations: ``find_if(first1, last1, bind2nd(equiv(), delim1))`` and ``find_if(first2, last2, bind2nd(equiv(), delim1))``, ``find_if(first1, last1, bind2nd(equiv(comp), delim1))`` and ``find_if(first2, last2, bind2nd(equiv(comp), delim1))``.
|
||||||
|
|
||||||
Remarks
|
Remarks
|
||||||
========================================
|
========================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue