@@ -54,11 +54,11 @@ class view_iterator final {
54
54
pools{},
55
55
filter{} {}
56
56
57
- view_iterator (iterator_type curr, iterator_type to, std::array<const Type *, Get> all_of , std::array<const Type *, Exclude> none_of ) noexcept
57
+ view_iterator (iterator_type curr, iterator_type to, std::array<const Type *, Get> value , std::array<const Type *, Exclude> excl ) noexcept
58
58
: it{curr},
59
59
last{to},
60
- pools{all_of },
61
- filter{none_of } {
60
+ pools{value },
61
+ filter{excl } {
62
62
while (it != last && !valid ()) {
63
63
++it;
64
64
}
@@ -114,9 +114,9 @@ struct extended_view_iterator final {
114
114
: it{},
115
115
pools{} {}
116
116
117
- extended_view_iterator (It from, std::tuple<Type *...> storage )
117
+ extended_view_iterator (It from, std::tuple<Type *...> value )
118
118
: it{from},
119
- pools{storage } {}
119
+ pools{value } {}
120
120
121
121
extended_view_iterator &operator ++() noexcept {
122
122
return ++it, *this ;
@@ -257,11 +257,11 @@ class basic_view<get_t<Get...>, exclude_t<Exclude...>> {
257
257
/* *
258
258
* @brief Constructs a multi-type view from a set of storage classes.
259
259
* @param value The storage for the types to iterate.
260
- * @param exclude The storage for the types used to filter the view.
260
+ * @param excl The storage for the types used to filter the view.
261
261
*/
262
- basic_view (Get &...value, Exclude &...exclude ) noexcept
262
+ basic_view (Get &...value, Exclude &...excl ) noexcept
263
263
: pools{&value...},
264
- filter{&exclude ...},
264
+ filter{&excl ...},
265
265
view{std::get<0 >(pools)} {
266
266
((view = value.size () < view->size () ? &value : view), ...);
267
267
}
@@ -574,18 +574,18 @@ class basic_view<get_t<Get>, exclude_t<>, std::void_t<std::enable_if_t<!Get::tra
574
574
575
575
/* *
576
576
* @brief Constructs a single-type view from a storage class.
577
- * @param ref The storage for the type to iterate.
577
+ * @param value The storage for the type to iterate.
578
578
*/
579
- basic_view (Get &ref ) noexcept
580
- : pools{&ref },
579
+ basic_view (Get &value ) noexcept
580
+ : pools{&value },
581
581
filter{} {}
582
582
583
583
/* *
584
584
* @brief Constructs a single-type view from a storage class.
585
- * @param ref The storage for the type to iterate.
585
+ * @param value The storage for the type to iterate.
586
586
*/
587
- basic_view (std::tuple<Get &> ref , std::tuple<> = {}) noexcept
588
- : basic_view{std::get<0 >(ref )} {}
587
+ basic_view (std::tuple<Get &> value , std::tuple<> = {}) noexcept
588
+ : basic_view{std::get<0 >(value )} {}
589
589
590
590
/* *
591
591
* @brief Returns the leading storage of a view.
0 commit comments