summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2020-04-13 10:11:31 (GMT)
committerMarc Chevrier <marc.chevrier@gmail.com>2020-04-17 08:00:03 (GMT)
commitaacd4e4a90a3afb23d681063d2ecba719f1adab8 (patch)
tree7e1a884cb47519099bd5db178681773f82dad688 /Help
parent9a450bcfec5411169007d5ca5f1bd40e6f476ff4 (diff)
downloadCMake-aacd4e4a90a3afb23d681063d2ecba719f1adab8.zip
CMake-aacd4e4a90a3afb23d681063d2ecba719f1adab8.tar.gz
CMake-aacd4e4a90a3afb23d681063d2ecba719f1adab8.tar.bz2
Refactoring: add cm::contains to <cmext/algorithm>
Diffstat (limited to 'Help')
-rw-r--r--Help/dev/source.rst11
1 files changed, 7 insertions, 4 deletions
diff --git a/Help/dev/source.rst b/Help/dev/source.rst
index 5371353..65a6adf 100644
--- a/Help/dev/source.rst
+++ b/Help/dev/source.rst
@@ -108,6 +108,9 @@ These are:
* ``cm::append``:
Append elements to a sequential container.
+ * ``cm::contains``:
+ Checks if element or key is contained in container.
+
* ``<cmext/iterator>``:
* ``cm::is_terator``:
@@ -117,12 +120,12 @@ These are:
Checks if a type is an input iterator type.
* ``cm::is_range``:
- Checks if a type is a range type: must have methods ``begin()`` and
- ``end()`` returning an iterator.
+ Checks if a type is a range type: functions ``std::begin()`` and
+ ``std::end()`` apply.
* ``cm::is_input_range``:
- Checks if a type is an input range type: must have methods ``begin()`` and
- ``end()`` returning an input iterator.
+ Checks if a type is an input range type: functions ``std::begin()`` and
+ ``std::end()`` apply and return an input iterator.
* ``<cmext/memory>``: