| 262 | } |
| 263 | |
| 264 | bool cString::IsNumber() const |
| 265 | { |
| 266 | for (int i = 0; i < GetSize(); ++i) { |
| 267 | if ( IsNumber(i) == false ) return false; |
| 268 | } |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | bool cString::IsNumeric() const |
| 273 | { |
no outgoing calls
no test coverage detected