-
-
Notifications
You must be signed in to change notification settings - Fork 61
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
Unset a column? #99
Comments
Is the ability to "unset" a column necessary, when you can already set something to 0? Wouldn't this work for your use case -
|
|
Are you saying you'd like to have a row (record) that's partially deleted in the collection? While what your saying makes sense in the context of one singular column, it doesn't hold up over a collection of multiple columns that use a singular index value. That'd mean each column would contain an independent mapping of the row index to that column's data for the row, as opposed to just using a list, and I don't think the overhead is worth it. In this case, I'd just set them to 0. |
Zero value it different from no value. Once you add a column to an id currently there is no way to get back to the original state. |
Note I can add Position and Velocity easily, and the number of PosVel are correct (1000). but how would I then remove the
vx/vy
later?The text was updated successfully, but these errors were encountered: