Files
openfoam/src/OpenFOAM/containers
Mark Olesen f2e3c1c422 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())
    {
        ...
    }
2017-04-11 09:55:54 +02:00
..
2017-02-08 19:32:38 +01:00
2017-03-08 11:10:16 +01:00
2016-10-04 09:45:46 +01:00