Signature: parseFloat(s: string) -> Result<float, StringError>

Description: Strict base-10 floating-point parser. No whitespace tolerance.

Parameters

Returns: Result<float, StringError>

Example

parseFloat("3.14")  // Success { value: 3.14 }