Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
curry
curry-libs
Merge requests
!15
Fix isBinDigit
Code
Review changes
Check out branch
Download
Email patches
Plain diff
Merged
Fredrik Wieczerkowski
requested to merge
fwcd/curry-libs:fix-is-bin-digit
into
master
Apr 12, 2021
Overview
0
Commits
1
Changes
1
Should be
isBinDigit
c
=
c
==
'0'
||
c
==
'1'
instead of
isBinDigit
c
=
c
>=
'0'
||
c
<=
'1'