Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Iterator-View.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@ is the same as

// Tuple API
Tuple<Vs...> make_tuple(Vs...);
auto nth(int, Tuple<Vs...>);
auto tuple_get(int, Tuple<Vs...>);
Tuple<Iterator<Vs>...> make_tuple(Iterator<Vs>...);
auto tuple_get(int, Tuple<Iterator<Vs>...>);

// Those helpers are needed
// if we do not want to support implicit type conversions
Expand All @@ -274,6 +276,7 @@ is the same as
// ternary operator
V if(bool, V, V);
Column<V> if(Column<bool>, Column<V>, Column<V>);
Iterator<V> if(bool, Iterator<V>, Iterator<V>);

// conditionals
bool eq(V, V);
Expand Down