We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6161986 commit 66c231eCopy full SHA for 66c231e
1 file changed
src/tuple19.lib/tuple19/Tuple.h
@@ -112,6 +112,12 @@ template<> struct Tuple<> {
112
113
template<class> static constexpr bool has_type = false;
114
115
+ template<size_t I> void at(Index<I>* = {}) const&;
116
+ template<class O> void of(Type<O>* = {}) const&;
117
+
118
+ template<size_t I> void amendAt(Index<I>* = {});
119
+ template<class O> void amendOf(Type<O>* = {});
120
121
template<class F> void visitAll(F&&) const& {}
122
template<class F> void amendAll(F&&) & {}
123
};
0 commit comments