-
Notifications
You must be signed in to change notification settings - Fork 66
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
unspecified()
and scalar ptype2 symmetry is wrong
#807
Comments
|
Is this the same issue as this ? library(vctrs)
library(tibble)
df <- tibble(x = NA)
vec_ptype(df)$x
#> logical(0)
vec_ptype2(df, df)$x
#> <unspecified> [0] Created on 2020-02-17 by the reprex package (v0.3.0.9000) |
@romainfrancois Both ptype and ptype2 return will unfinalised prototypes across all columns once Davis' changes in #816 are merged. This particular issue is just about a missing |
@romainfrancois with current master, because of #816 library(vctrs)
library(tibble)
df <- tibble(x = NA)
vec_ptype(df)$x
#> <unspecified> [0]
vec_ptype2(df, df)$x
#> <unspecified> [0]
vec_ptype_common(df)$x
#> logical(0)
vec_ptype_common(df, df)$x
#> logical(0) Created on 2020-02-17 by the reprex package (v0.3.0) |
With current master:
Created on 2020-02-11 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered: