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
Right now list methods don't work with tuples (error about not being a list value) and there are no tuple-specific methods.
I think I saw it mentioned somewhere else, but there's no way to extract values from a tuple AFAICT. Validities are a special case where to_bool and to_int will extract the second and first values, but for user generated tuples there's no such option (and really, first and last or get(, 0)get(, 1) would probably be clearer for those anyway).
The text was updated successfully, but these errors were encountered:
Right now list methods don't work with tuples (error about not being a list value) and there are no tuple-specific methods.
I think I saw it mentioned somewhere else, but there's no way to extract values from a tuple AFAICT. Validities are a special case where
to_bool
andto_int
will extract the second and first values, but for user generated tuples there's no such option (and really,first
andlast
orget(, 0)
get(, 1)
would probably be clearer for those anyway).The text was updated successfully, but these errors were encountered: