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

std: rename .connect/.concat in VectorVector to avoid conflicting with StrVector. #7147

Merged
merged 1 commit into from
Jun 15, 2013

Commits on Jun 15, 2013

  1. std: rename .connect/.concat in VectorVector to avoid conflicting wit…

    …h StrVector.
    
    This is caused by StrVector having a generic implementation for &[S]
    and so rust-lang#5898 means that method resolution of ~[~[1]].concat() sees that
    both StrVector and VectorVector have methods that (superficially) match.
    
    They are now connect_vec and concat_vec, which means that they can actually be
    called.
    huonw committed Jun 15, 2013
    5 Configuration menu
    Copy the full SHA
    1854256 View commit details
    Browse the repository at this point in the history