mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-11 21:44:40 +00:00
5 lines
126 B
Nim
5 lines
126 B
Nim
|
import pkg/stint
|
||
|
|
||
|
func fromDecimal*(T: typedesc[StUint|StInt], s: string): T {.inline.} =
|
||
|
parse(s, type result, radix = 10)
|