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
i.e. to support things like #315 where you default construct the vector and immediately try and put attributes on it.
Would also simplify internal code that currently has to account for the possibility of R_NilValue as data_ quite a bit.
We'd have to write our own default constructor but I think that's totally possible?
A downside of this is that the default constructor would have to allocate and would no longer be noexcept or as "cheap", but I can't see that mattering much because you eventually allocate anyways?
The text was updated successfully, but these errors were encountered:
i.e. to support things like #315 where you default construct the vector and immediately try and put attributes on it.
Would also simplify internal code that currently has to account for the possibility of
R_NilValue
asdata_
quite a bit.We'd have to write our own
default
constructor but I think that's totally possible?A downside of this is that the default constructor would have to allocate and would no longer be
noexcept
or as "cheap", but I can't see that mattering much because you eventually allocate anyways?The text was updated successfully, but these errors were encountered: