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 I would do let (initial_result, mask) = ... and var result = initial_result as might be easier to understand what's going on for those less familiar with the language.
There are many uses of
var
andundefined
that are unnecessary and dodgy, especially in the vector code. For example this:Would probably be better like
(unfortunately
var result = result;
doesn't work)The text was updated successfully, but these errors were encountered: