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

Array.indexedMap stops at 1024 #426

Closed
simonh1000 opened this Issue Oct 18, 2015 · 1 comment

Comments

Projects
None yet
2 participants
@simonh1000
Contributor

simonh1000 commented Oct 18, 2015

Try this in repl:
Array.indexedMap (\idx v -> idx) <| Array.fromList [0..1030]

results in ... 1021,1022,1023,0,1,2,3,4,5,6]

List.indexedMap seems to be OK

@jvoigtlaender

This comment has been minimized.

Show comment
Hide comment
@jvoigtlaender

jvoigtlaender Oct 18, 2015

Contributor

Isn't that the same as elm/elm-lang.org#262 and https://github.com/elm-lang/core/issues/271, which was fixed in https://github.com/elm-lang/core/pull/391 (but hasn't yet been released as part of a new core version)?

Contributor

jvoigtlaender commented Oct 18, 2015

Isn't that the same as elm/elm-lang.org#262 and https://github.com/elm-lang/core/issues/271, which was fixed in https://github.com/elm-lang/core/pull/391 (but hasn't yet been released as part of a new core version)?

@simonh1000 simonh1000 closed this Oct 18, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment