Header menu logo TDesu.FSharp

Decimal Module

Functions and values

Function or value Description

Decimal.tryParse str

Full Usage: Decimal.tryParse str

Parameters:
    str : string

Returns: decimal option
Modifiers: inline

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

Decimal.tryParseInv str

Full Usage: Decimal.tryParseInv str

Parameters:
    str : string

Returns: decimal option
Modifiers: inline

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

Decimal.tryParseInvV str

Full Usage: Decimal.tryParseInvV str

Parameters:
    str : string

Returns: decimal voption
Modifiers: inline

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

str : string
Returns: decimal voption

Decimal.tryParseV str

Full Usage: Decimal.tryParseV str

Parameters:
    str : string

Returns: decimal voption
Modifiers: inline

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

str : string
Returns: decimal voption

Type something to start searching.