From 1709843125c128b924e0dfd46fe32c9ff3e7fdac Mon Sep 17 00:00:00 2001 From: Till Ehrengruber Date: Thu, 4 May 2023 11:39:12 +0200 Subject: [PATCH] Allow using iterators in make_tuple, tuple_get, if --- Iterator-View.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Iterator-View.md b/Iterator-View.md index c51d8f3..777aac1 100644 --- a/Iterator-View.md +++ b/Iterator-View.md @@ -264,7 +264,9 @@ is the same as // Tuple API Tuple make_tuple(Vs...); - auto nth(int, Tuple); + auto tuple_get(int, Tuple); + Tuple...> make_tuple(Iterator...); + auto tuple_get(int, Tuple...>); // Those helpers are needed // if we do not want to support implicit type conversions @@ -274,6 +276,7 @@ is the same as // ternary operator V if(bool, V, V); Column if(Column, Column, Column); + Iterator if(bool, Iterator, Iterator); // conditionals bool eq(V, V);