diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2020-04-18 09:27:40 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-04-18 09:27:52 (GMT) |
commit | 40d17356811dcf9e525e6adf7bd723ee8c678ebe (patch) | |
tree | 6e8d31e5026c68694b01f7955235fb6cc82b5c39 /Help | |
parent | fbf8db89e4e9441462a19b4684ddd51aa8cbe7b5 (diff) | |
parent | aacd4e4a90a3afb23d681063d2ecba719f1adab8 (diff) | |
download | CMake-40d17356811dcf9e525e6adf7bd723ee8c678ebe.zip CMake-40d17356811dcf9e525e6adf7bd723ee8c678ebe.tar.gz CMake-40d17356811dcf9e525e6adf7bd723ee8c678ebe.tar.bz2 |
Merge topic 'add-contains-to-cmext-algorithm'
aacd4e4a90 Refactoring: add cm::contains to <cmext/algorithm>
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4606
Diffstat (limited to 'Help')
-rw-r--r-- | Help/dev/source.rst | 11 |
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>``: |