You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Question rather than an issue: the docs in Iterable.kt for e.g. getAll() mention that the order is preserved. Other methods like combine() don't mention anything about the order.
Is the order guaranteed and it's just that the docs are a bit inconsistent between methods or the order for some methods is not guaranteed?
The text was updated successfully, but these errors were encountered:
Thanks for the question - looking at the implementation the Ok results will appear in the List in order of iteration (so whatever order the Iterable.map would return). I think it's safe to assume that they are guaranteed to be in order.
I'd accept a PR to improve the documentation here - it's basically just the same documentation as the implementation in Elm which doesn't specify anything about order, so we could improve it here.
Question rather than an issue: the docs in
Iterable.kt
for e.g.getAll()
mention that the order is preserved. Other methods likecombine()
don't mention anything about the order.Is the order guaranteed and it's just that the docs are a bit inconsistent between methods or the order for some methods is not guaranteed?
The text was updated successfully, but these errors were encountered: