-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing booleans #48
Labels
good first issue
Good for newcomers
Comments
I need to revisit this. Thanks for pointing it out. |
This is open. All that needs to be changed is Line 10 in b548f0d
to Regex::new(r"^true$|^false$|^t$|^f$|TRUE$|^FALSE$|^T$|^F$|^True|^False|^1$|^0$").unwrap(); |
Merged
Closed with #61 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tv/src/datatype.rs
Line 10 in b548f0d
Not sure if this is a mistake, but the function comments mentions scanning for "0" and "1" but they seem omitted from the regex
The text was updated successfully, but these errors were encountered: