diff --git a/docs/_sources/libs/algorithm/tristate_lexicographical_compare.txt b/docs/_sources/libs/algorithm/tristate_lexicographical_compare.txt index 9ca5ed8e..fc0e3762 100644 --- a/docs/_sources/libs/algorithm/tristate_lexicographical_compare.txt +++ b/docs/_sources/libs/algorithm/tristate_lexicographical_compare.txt @@ -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, 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 ======================================== diff --git a/docs/libs/algorithm/tristate_lexicographical_compare.html b/docs/libs/algorithm/tristate_lexicographical_compare.html index 3de80314..a688a723 100644 --- a/docs/libs/algorithm/tristate_lexicographical_compare.html +++ b/docs/libs/algorithm/tristate_lexicographical_compare.html @@ -140,7 +140,7 @@
--Und wenn du lange in einen constexpr blickst, blickt der constexpr auch in dich hinein.
- Certain philosopher -
-+constexpr is Mandatory. Citizen, are you constexpr?
- Certain computer -
++Und wenn du lange in einen constexpr blickst, blickt der constexpr auch in dich hinein.
+ Certain philosopher +
++constexpr is Mandatory. Citizen, are you constexpr?
+ Certain computer +
Wandbox is an online compiler that you can use the Sprout C++ Libraries.
diff --git a/source/libs/algorithm/tristate_lexicographical_compare.rst b/source/libs/algorithm/tristate_lexicographical_compare.rst index 9ca5ed8e..fc0e3762 100644 --- a/source/libs/algorithm/tristate_lexicographical_compare.rst +++ b/source/libs/algorithm/tristate_lexicographical_compare.rst @@ -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, 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 ========================================