-
Notifications
You must be signed in to change notification settings - Fork 19
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
Update README for Julia 1.0 #98
Conversation
Codecov Report
@@ Coverage Diff @@
## master #98 +/- ##
=======================================
+ Coverage 88.46% 92% +3.53%
=======================================
Files 1 1
Lines 52 50 -2
=======================================
Hits 46 46
+ Misses 6 4 -2
Continue to review full report at Codecov.
|
This package still provides additional features to handle `missing` values. | ||
See [the Julia manual](https://docs.julialang.org/en/v1/manual/missing/index.html) for general documentation on missing values in Julia. | ||
This package still provides additional features to handle `missing` values: | ||
- `Missings.T` to extract `T` from a `Union{T, Missing}` type |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it worth mentioning this at all given that Base.nonmissingtype
exists?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Until it's exported I'd rather not recommend it. Also it's broken in complex cases in older Julia versions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's fair I suppose.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `Missings.T` to extract `T` from a `Union{T, Missing}` type | |
- `Missings.nonmissingtype` to extract `T` from a `Union{T, Missing}` type |
Fixes #97.
We could also add deprecations for remaining functions, but probably better do that for all functions at the same time once replacements have been included in Julia (notably
nonmissingtype
andpassmissing
).