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

Specialize .zip() for efficient slice and slice iteration #33090

Merged
merged 8 commits into from
Jun 17, 2016

Commits on Jun 14, 2016

  1. Configuration menu
    Copy the full SHA
    f8d2fdf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    592eaa5 View commit details
    Browse the repository at this point in the history
  3. specialize zip: Specialize .zip() for TrustedRandomAccess iterators

    This allows common iterator compositions like a.zip(b) where a, b
    are slice::{Iter, IterMut} compile to *much* better code.
    bluss committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    a8f2e9b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    515c4d3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    13f8f40 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c2ef20f View commit details
    Browse the repository at this point in the history
  7. specialize zip: Add benchmarks

    bluss committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    85cd49f View commit details
    Browse the repository at this point in the history
  8. specialize zip: Use associated type for specialized zip struct data

    The associated type must be 'static to avoid dropck related errors.
    bluss committed Jun 14, 2016
    Configuration menu
    Copy the full SHA
    5df05c6 View commit details
    Browse the repository at this point in the history