[issue45856] [doc] map() documentation ambiguous about consumption order

2021-11-20 Thread Thibaut Horel
Thibaut Horel added the comment: > this hasn't proven to be a point of confusion Absence of evidence is not evidence of absenceā€¦ The word "confusion" is probably a bit strong, but I recently had to write code relying on this behavior and found myself checking the documentation

[issue45856] [doc] map() documentation ambiguous about consumption order

2021-11-20 Thread Thibaut Horel
New submission from Thibaut Horel : In cases where multiple iterables are passed to the built-in function map(), the documentation is ambiguous about the order in which they are consumed [1]. Although the order of evaluation of function arguments is documented to be left-to-right in general