Skip to content
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

Fix Zip::indexed for the 0-dimensional case #862

Merged
merged 1 commit into from Dec 14, 2020

Commits on Dec 14, 2020

  1. Fix Zip::indexed for the 0-dimensional case

    This commit fixes a panic for 0-dimensional, indexed `Zip` instances
    which results from an out-of-bounds index in a call to
    `IndexPtr::stride_offset` in `Zip::inner`. Basically, the "stride" for
    `IndexPtr` is the axis to update, but for the 0-dimensional case,
    there are no axes, so `IndexPtr::stride_offset` cannot be called
    without panicking due to the `self.index[stride]` access.
    
    The chosen solution is to add a special check to `Zip::apply_core` for
    the 0-dimensional case. Another possible solution would be to modify
    the loop of `Zip::inner` such that an offset would not be performed
    for an index of zero.
    jturner314 committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    e12d11d View commit details
    Browse the repository at this point in the history