You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should say in the documentation that an other set of curly braces is needed when using select specifying the size of the selector.
// Select with an std::vector -> initializer listauto val = var.select<join::outer>({{"abscissa", "a"}, {"ordinate", 1}});
// Select with an std::array of size 2 -> additional curly braces // around the initializer listauto val = var.select<join::outer, 2>({{{"abscissa", "a"}, {"ordinate", 1}}});
The text was updated successfully, but these errors were encountered:
We should say in the documentation that an other set of curly braces is needed when using select specifying the size of the selector.
The text was updated successfully, but these errors were encountered: