Skip to content

Commit

Permalink
rename meta::list_element to meta::at; add meta::count, count_if, let…
Browse files Browse the repository at this point in the history
…; rename index to find_index; etc.
  • Loading branch information
Eric Niebler committed Feb 26, 2015
1 parent ba355e0 commit 970ce2e
Show file tree
Hide file tree
Showing 4 changed files with 400 additions and 178 deletions.
2 changes: 1 addition & 1 deletion include/range/v3/utility/concepts.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ namespace ranges

template<typename Concept, typename...Args, typename...Ts>
struct models<Concept(Args...), Ts...>
: models<Concept, meta::list_element<Args, meta::list<Ts...> >...>
: models<Concept, meta::at<Args, meta::list<Ts...> >...>
{};

////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
Loading

0 comments on commit 970ce2e

Please sign in to comment.