Files
openfoam/applications/test
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
..
2016-12-18 20:40:03 +01:00
2016-04-16 18:34:41 +01:00
2016-10-17 12:02:01 +02:00
2015-12-22 23:14:17 +00:00
2013-09-27 22:47:59 +01:00