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

RFC: Make Tuple types with defined lengths iterable #11547

Closed
wants to merge 2 commits into from
Closed

Commits on Jun 2, 2015

  1. Make Tuple types with defined lengths iterable

    More abstract tuple types like `Tuple` or `NTuple` (without parameters) and vararg tuples remain without any iteration methods defined.
    
    I only discovered one minor confusion stemming from a definition for `eltype` for NTuples of all the same type.  Since eltype works in the type domain, there is no way to tell whether `eltype{N,T}(::Type{NTuple{N,T}})` should be `T` or `Type{T}`. I have removed these definitions.
    mbauman committed Jun 2, 2015
    Configuration menu
    Copy the full SHA
    0efd167 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2015

  1. Configuration menu
    Copy the full SHA
    2263790 View commit details
    Browse the repository at this point in the history