-
-
Notifications
You must be signed in to change notification settings - Fork 701
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
[RFC]: refactor and add accessor protocol support to stats/base/mean #5629 #5730
base: develop
Are you sure you want to change the base?
[RFC]: refactor and add accessor protocol support to stats/base/mean #5629 #5730
Conversation
…5629 Refactor the mean function to add support for the accessor protocol. This change ensures that the function can handle array-like objects with custom accessors, improving flexibility and compatibility with various data structures. - Refactor mean function in main.js to delegate to ndarray.js - Update ndarray.js to handle accessor protocol - Add tests for accessor protocol support - Fix JSDoc comments and examples for accuracy Fixes: stdlib-js#5629 --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- Resolves stdlib-js#5629. > What is the purpose of this pull request? This pull request: - Refactors the mean function to add support for the accessor protocol. This change ensures that the function can handle array-like objects with custom accessors, improving flexibility and compatibility with various data structures. > Does this pull request have any related issues? This pull request: - resolves stdlib-js#5629 > Any questions for reviewers of this pull request? No. > Any other information relevant to this pull request? This may include screenshots, references, and/or implementation notes. No. > Please ensure the following tasks are completed before submitting this pull request. - [x] Read, understood, and followed the [contributing guidelines][contributing]. * * * @stdlib-js/reviewers [contributing]: https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md
Hello! 👋 I've noticed that your commit doesn't contain the expected YAML metadata blocks. This typically happens when your development environment isn't properly set up with the stdlib git hooks. Here's how to fix this:
If you're still having issues, please check our development guide for more information. Thank you for your contribution! |
Coverage Report
The above coverage report was generated for the changes in this PR. |
Refactor the mean function to add support for the accessor protocol. This change ensures that the function can handle array-like objects with custom accessors, improving flexibility and compatibility with various data structures.
Fixes: #5629
type: pre_commit_static_analysis_report
description: Results of running static analysis checks when committing changes. report:
type: pre_push_report
description: Results of running various checks prior to pushing changes. report:
type: pre_push_report
description: Results of running various checks prior to pushing changes. report:
type: pre_push_report
description: Results of running various checks prior to pushing changes. report:
type: pre_push_report
description: Results of running various checks prior to pushing changes. report:
type: pre_push_report
description: Results of running various checks prior to pushing changes. report:
Resolves #5629.
Description
This pull request:
stats/base/mean
#5629Related Issues
This pull request:
stats/base/mean
#5629Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers