mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 21:40:32 +00:00
Revert "add fromChar" (#20336)
Revert "add `fromChar` (#20332)"
This reverts commit 846cc746a2.
This commit is contained in:
@@ -997,15 +997,6 @@ func toOctal*(c: char): string {.rtl, extern: "nsuToOctal".} =
|
||||
result[i] = chr(val mod 8 + ord('0'))
|
||||
val = val div 8
|
||||
|
||||
func fromChar[T: SomeInteger](ch: char): T =
|
||||
runnableExamples:
|
||||
assert fromChar[int8]('6') == 6
|
||||
doAssertRaises AssertionDefect:
|
||||
fromChar[int8]('a')
|
||||
|
||||
assert isDigit(ch)
|
||||
T(ord(ch) - ord('0'))
|
||||
|
||||
func fromBin*[T: SomeInteger](s: string): T =
|
||||
## Parses a binary integer value from a string `s`.
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user