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
By default multiple brace expansions are expanded as a cross-product i.e. {a..b}{1..2} is same as a1 a2 b1 b2
Sometimes would be nice to have a brace expansion expanded element-wise i.e. get a1 b2
If one side is shorter than the other would be nice to recycle elements as needed
In mathematics notation the element-wise product is notated by a circle with a dot in the middle ⊙ (U+2299) which looks like the bilabial click ʘ (U+0298).
As an ASCII alternative perhaps use {} or (.) or perhaps ! i.e. {a..b}{}{1..2} or {a..b}(.){1..2} or {a..b}!{1..2}?
The text was updated successfully, but these errors were encountered:
{a..b}{1..2}
is same asa1 a2 b1 b2
a1 b2
{}
or(.)
or perhaps!
i.e.{a..b}{}{1..2}
or{a..b}(.){1..2}
or{a..b}!{1..2}
?The text was updated successfully, but these errors were encountered: