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
In the upcoming Julia 1.7, one new feature as described here allows the usage of (; a, b) = x, which can destructure properties a and b of x. This means that
@unpack fid, footer, cellIndex = meta
can now be written as
(; fid, footer, cellindex) = meta
I love built-in support, so when Julia 1.7 is ready I am willing to switch to rely on this new feature. Good that we do not need backward compatibilities!
The text was updated successfully, but these errors were encountered:
In the upcoming Julia 1.7, one new feature as described here allows the usage of
(; a, b) = x
, which can destructure properties a and b of x. This means thatcan now be written as
(; fid, footer, cellindex) = meta
I love built-in support, so when Julia 1.7 is ready I am willing to switch to rely on this new feature. Good that we do not need backward compatibilities!
The text was updated successfully, but these errors were encountered: