This module implements string utilities.
Procs
func parseInt(str: string): Pon2Result[int] {.inline, noinit, ...raises: [], tags: [], forbids: [].}
- Returns the integer converted from the string. Source Edit
func parseOrdinal[T: Ordinal](str: string): Pon2Result[T] {.inline, noinit, ...raises: [].}
- Returns the ordinal type converted from the string. Source Edit