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

Implement direct usize indexing #132

Merged
merged 2 commits into from
Aug 7, 2020
Merged

Commits on Aug 7, 2020

  1. Implement direct usize indexing

    ```rust
    where
        IndexMap<K, V, S>: IndexMut<usize, Output = V>,
        IndexSet<T, S>: Index<usize, Output = T>,
    ```
    
    This allows `map[i]` and `set[i]` indexing to access values directly,
    panicking if the index is out of bounds, similar to slices.
    
    On maps, this somewhat overlaps with `Index<&Q> + IndexMut<&Q>` where
    `Q: Equivalent<K>`. The reference makes this indexing unambiguous, but
    it could be confusing to users if the key type is also an integer.
    cuviper committed Aug 7, 2020
    Configuration menu
    Copy the full SHA
    7378003 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4d4fc0a View commit details
    Browse the repository at this point in the history