| 270 | } |
| 271 | |
| 272 | bool cString::IsNumeric() const |
| 273 | { |
| 274 | for (int i = 0; i < GetSize(); ++i) { |
| 275 | if ( IsNumber(i) == false ) return false; |
| 276 | } |
| 277 | return true; |
| 278 | } |
| 279 | |
| 280 | bool cString::IsAlphaNumeric() const |
| 281 | { |
no outgoing calls
no test coverage detected