as parseInt but returns a floating point value
| 135 | |
| 136 | // as parseInt but returns a floating point value |
| 137 | float Stream::parseFloat() |
| 138 | { |
| 139 | return parseFloat(NO_SKIP_CHAR); |
| 140 | } |
| 141 | |
| 142 | // as above but the given skipChar is ignored |
| 143 | // this allows format characters (typically commas) in values to be ignored |