Header menu logo TDesu.FSharp

Single Module

Functions and values

Function or value Description

Single.tryParse str

Full Usage: Single.tryParse str

Parameters:
    str : string

Returns: float32 option
Modifiers: inline

Parses a string as float32 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: float32 option

Single.tryParseInv str

Full Usage: Single.tryParseInv str

Parameters:
    str : string

Returns: float32 option
Modifiers: inline

Parses a string as float32 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: float32 option

Single.tryParseInvV str

Full Usage: Single.tryParseInvV str

Parameters:
    str : string

Returns: float32 voption
Modifiers: inline

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

str : string
Returns: float32 voption

Single.tryParseV str

Full Usage: Single.tryParseV str

Parameters:
    str : string

Returns: float32 voption
Modifiers: inline

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

str : string
Returns: float32 voption

Type something to start searching.