Header menu logo TDesu.FSharp

Double Module

Functions and values

Function or value Description

Double.tryParse str

Full Usage: Double.tryParse str

Parameters:
    str : string

Returns: float option
Modifiers: inline

Parses a string as double using the ambient culture, returning Some(value) or None. For text that came from a machine rather than from a person, use tryParseInv — see the note at the top of this file. The string to parse.

str : string
Returns: float option

Double.tryParseInv str

Full Usage: Double.tryParseInv str

Parameters:
    str : string

Returns: float option
Modifiers: inline

Parses a string as double against the invariant culture, refusing group separators. This is the one to use for machine-generated text, whose meaning must not depend on the host's locale. The string to parse.

str : string
Returns: float option

Double.tryParseInvV str

Full Usage: Double.tryParseInvV str

Parameters:
    str : string

Returns: float voption
Modifiers: inline

Parses a string as double against the invariant culture, refusing group separators, returning ValueSome(value) or ValueNone. The string to parse.

str : string
Returns: float voption

Double.tryParseV str

Full Usage: Double.tryParseV str

Parameters:
    str : string

Returns: float voption
Modifiers: inline

Parses a string as double using the ambient culture, returning ValueSome(value) or ValueNone. The string to parse.

str : string
Returns: float voption

Type something to start searching.