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
I think this functionality is much too special-case to invent a new one-character operator for. I would like (and plan to implement) a zip function, so that you could zip together [1,2,3,4] and [1,null,1,null] to get [[1,1],[2,null],[3,1],[4,null]], which can be selected.
I'm suggesting a new operator ~. It takes two Arrays x and y, and return a Array [z| z=xi for all yi=true].
Example:
<[1,2,3,4,5] ~ [1,null,1,null]
>[1,3]
Or maybe a set?
The text was updated successfully, but these errors were encountered: