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
Often flatdata data needs to be sorted. By not exposing sort methods on Vector the user has to sort another structure first before serializing. This needs special wrapper since the Vector classes just expose proxies / proxy iterators.
This is distinct from external memory sort on ExternalVector: All the data is in memory.
After #169 a Vector can be cast to a mutable slice if (and only if) it does not contain ranges. Those slices should then be sortable via normal methods.
Often flatdata data needs to be sorted. By not exposing sort methods on Vector the user has to sort another structure first before serializing. This needs special wrapper since the Vector classes just expose proxies / proxy iterators.
This is distinct from external memory sort on ExternalVector: All the data is in memory.
FYI: @boxdot
The text was updated successfully, but these errors were encountered: