I think we may need a some data.frame fallbacks so that we get something like this:
vec_rbind(tibble(x = 1), data.table(x = 1))
# Warning: combining <tibble> and <data.table>; falling back to <data.frame>
(This is not a general regret that we're moving away from inheritance; it's a specific pragmatic fallback + warning for people working with multiple data frame subclasses)
I think we may need a some data.frame fallbacks so that we get something like this:
(This is not a general regret that we're moving away from inheritance; it's a specific pragmatic fallback + warning for people working with multiple data frame subclasses)