mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 13:33:10 +00:00
5 lines
128 B
Nim
5 lines
128 B
Nim
import pkg/stint
|
|
|
|
func fromDecimal*(T: typedesc[StUint | StInt], s: string): T {.inline.} =
|
|
parse(s, type result, radix = 10)
|