inconsistency between char-numeric? and digit-value

Issue #120 resolved
Takashi Kato repo owner created an issue

digit-value should return number if char-numeric? returned #t so this should not be the case

(char-numeric? #\xb2)
;; -> #f
(digit-value #\xb2)
;; -> 2

Comments (1)

  1. Log in to comment