Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upArray.indexedMap stops at 1024 #426
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
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)?
|
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 |
simonh1000
closed this
Oct 18, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
simonh1000 commentedOct 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