Skip to content

Fix isBinDigit

Fredrik Wieczerkowski requested to merge fwcd/curry-libs:fix-is-bin-digit into master

Should be

isBinDigit c = c == '0' || c == '1'

instead of

isBinDigit c = c >= '0' || c <= '1'

Merge request reports