| 1002 | |
| 1003 | |
| 1004 | int gtString::findFirstNotOf(const gtString& characters, int searchStartPosition) const |
| 1005 | { |
| 1006 | int retVal = (int)_impl.find_first_not_of(characters._impl, searchStartPosition); |
| 1007 | return retVal; |
| 1008 | } |
| 1009 | |
| 1010 | |
| 1011 | // --------------------------------------------------------------------------- |
no test coverage detected