Index
Modules:
pyrepr
,
pyrepr/asciiImpl
,
pyrepr/radix
,
pyrepr/reprImpl
.
API symbols
addLower:
radix: proc addLower[baseBits: SBB](result: var string; x: BiggestUInt; len: Positive; handleNegative: bool)
radix: proc addLower[baseBits: SBB](result: var string; x: SomeInt8)
radix: proc addLower[baseBits: SBB](result: var string; x: SomeInteger; len: Positive = strLenInHex(typeof(x)))
addLowerHex:
radix: proc addLowerHex(result: var string; x: SomeInt8)
radix: proc addLowerHex[T: SomeInteger](result: var string; x: T; len: Positive = strLenInHex(T))
ascii:
pyrepr: proc ascii(us: openArray[char]): string
bin:
radix: proc bin[T: SomeInteger](x: T): string
hex:
radix: proc hex[T: SomeInteger](x: T): string
oct:
radix: proc oct[T: SomeInteger](x: T): string
pyasciiImpl:
asciiImpl: proc pyasciiImpl(us: string): string
pyasciiImplFromRunes:
asciiImpl: template pyasciiImplFromRunes(result: var string; us)
pyrepr:
reprImpl: proc pyrepr(s: openArray[char]; escape127: static[bool] = false): string
pyreprb:
reprImpl: proc pyreprb(s: openArray[char]): string
toLowerbin:
radix: proc toLowerbin[T: SomeInteger](x: T; len: Positive = sizeof(T) * 8): string
toLowerHex:
radix: proc toLowerHex(s: openArray[char]): string
radix: proc toLowerHex(s: openArray[char]; sep: char): string
toLowerhex:
radix: proc toLowerhex[T: SomeInteger](x: T; len: Positive = sizeof(T) * 2): string
toLoweroct:
radix: proc toLoweroct[T: SomeInteger](x: T; len: Positive = sizeof(T) * 3): string