mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-19 07:21:19 +00:00
@@ -14,6 +14,11 @@ proc repr*(x: int64): string {.magic: "Int64ToStr", noSideEffect.}
|
||||
## repr for an integer argument. Returns `x`
|
||||
## converted to a decimal string.
|
||||
|
||||
proc repr*(x: uint64): string {.noSideEffect.} =
|
||||
## repr for an unsigned integer argument. Returns `x`
|
||||
## converted to a decimal string.
|
||||
$x #Calls `$` from system/strmantle.nim
|
||||
|
||||
proc repr*(x: float): string {.magic: "FloatToStr", noSideEffect.}
|
||||
## repr for a float argument. Returns `x`
|
||||
## converted to a decimal string.
|
||||
|
||||
Reference in New Issue
Block a user