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
In following example:
arr :: Array Int arr = [1,2,3,4,5] test :: String test = show $ A.groupBy (\_ _ -> true) arr
Expected value of the function test:
test
[(NonEmptyArray [1,2,3,4,5])]
Actually:
[(NonEmptyArray [2,3,4,5,1])]
The first element is placed at the end of array.
The text was updated successfully, but these errors were encountered:
Thanks for reporting!
Sorry, something went wrong.
groupBy shouldn't reorder the elements. Fixes purescript#147
4ee4619
Released in v5.1.0
No branches or pull requests
In following example:
Expected value of the function
test
:Actually:
The first element is placed at the end of array.
The text was updated successfully, but these errors were encountered: