We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
sometimes a range with a modifier can be equal to a natural range
A range of value between 3 and 6 is equal to a range of value between 2 and 5 with a succ function mapped on it.
To Reproduce Steps to reproduce the behavior:
let data_a = Range.from 3 6 in let data_b = Range.from 2 5 |> Range.map succ in Range.equal data_a data_b;; - : bool = false
Expected behavior The expected result is - : bool = true
- : bool = true
The text was updated successfully, but these errors were encountered:
add functional test for qualifying issue #1
bd07154
fix of issue #1
3e62cff
issue fixed
Sorry, something went wrong.
aldrikfr
No branches or pull requests
sometimes a range with a modifier can be equal to a natural range
A range of value between 3 and 6 is equal to a range of value between 2 and 5 with a succ function mapped on it.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The expected result is
- : bool = true
The text was updated successfully, but these errors were encountered: