Class
Int32Extensions
class Int32Extensions
Namespace: System
Assembly: Raven.Core.dll
Source file: Parse.rvn
Inheritance: object → Int32Extensions
Provides carrier-returning parsing projections for 32-bit integers.
Methods
3 items
static func Parse(input: string) -> Result<int, FormatException | OverflowException>
Parses an integer and captures format or overflow failures in a `Result`.
static func TryParse(input: string?, style: NumberStyles, provider: IFormatProvider?) -> Option<int>
Parses an integer using the specified style and format provider.
static func TryParse(input: string?) -> Option<int>
Parses an integer and returns `Some` on success or `None` on failure.