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);