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
mean
I used to assume that mean(f, itr) calls f once for each of the elements of itr.
mean(f, itr)
f
itr
However, there is an (extra) dry run which
In Slack's #helpdesk channel, it was also noted that there could be some issues with weirdly indexed arrays.
For example,
g3 = 0; mean(i -> (global g3 += 1; 1), 1:1)
results in g3 == 2.
g3 == 2
Moreover, this behaviour is not documented.
The text was updated successfully, but these errors were encountered:
See #49
Sorry, something went wrong.
No branches or pull requests
I used to assume that
mean(f, itr)
callsf
once for each of the elements ofitr
.However, there is an (extra) dry run which
f
s that mutate the state,In Slack's #helpdesk channel, it was also noted that there could be some issues with weirdly indexed arrays.
For example,
results in
g3 == 2
.Moreover, this behaviour is not documented.
The text was updated successfully, but these errors were encountered: