Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Built-in Julia 1.7 support for unpack #26

Closed
henry2004y opened this issue Sep 8, 2021 · 1 comment
Closed

Built-in Julia 1.7 support for unpack #26

henry2004y opened this issue Sep 8, 2021 · 1 comment
Labels
enhancement New feature or request
Milestone

Comments

@henry2004y
Copy link
Owner

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!

@henry2004y henry2004y added the enhancement New feature or request label Sep 8, 2021
@henry2004y henry2004y modified the milestone: version 0.8 Sep 9, 2021
@henry2004y henry2004y added this to the version 0.9 milestone Sep 25, 2021
@henry2004y
Copy link
Owner Author

With #62, we are ready.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant