Skip to content
Snippets Groups Projects
Commit c428cfa2 authored by mark's avatar mark
Browse files

ENH: provide HashTable::iterator::found() method

- This can be used as a convenient alternative to comparing against end().
  Eg,

    dictionaryConstructorTable::iterator cstrIter =
        dictionaryConstructorTablePtr_->find(methodType);

    if (cstrIter.found())
    {
        ...
    }
  vs.
    if (cstrIter != dictionaryConstructorTablePtr_->end())
    {
        ...
    }
parent 37ef335d
No related branches found
No related tags found
1 merge request!121Merge develop into master for v1706 release
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment