Module parsers

Miscellaneous parse tools

Procs

proc strToInt64*(s: string): int64 {.
raises: ValueError
.}
  Source Edit
proc strToInt*(s: string): int {.
raises: ValueError
.}
  Source Edit
proc strToInt32*(s: string): int32 {.
raises: ValueError
.}
  Source Edit
proc strToInt16*(s: string): int16 {.
raises: ValueError
.}
  Source Edit
proc strToInt8*(s: string): int8 {.
raises: ValueError
.}
  Source Edit
proc strToUInt64*(s: string): uint64 {.
raises: ValueError
.}
  Source Edit
proc strToUInt*(s: string): uint {.
raises: ValueError
.}
  Source Edit
proc strToUInt32*(s: string): uint32 {.
raises: ValueError
.}
  Source Edit
proc strToUInt16*(s: string): uint16 {.
raises: ValueError
.}
  Source Edit
proc strToUInt8*(s: string): uint8 {.
raises: ValueError
.}
  Source Edit