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
Hey,
if I saw it correctly, integer vectors such as sdsl::dac_vector<> offer direct access for decompression, meaning that you can access members of the vector with the [] operator. When you want to decompress the whole vector, chaining the [] accesses may not be the fastest way. I wanted to ask if there is another way to decompress a whole vector that is faster than using [] for each element?
The text was updated successfully, but these errors were encountered:
Hey,
if I saw it correctly, integer vectors such as
sdsl::dac_vector<>
offer direct access for decompression, meaning that you can access members of the vector with the[]
operator. When you want to decompress the whole vector, chaining the[]
accesses may not be the fastest way. I wanted to ask if there is another way to decompress a whole vector that is faster than using[]
for each element?The text was updated successfully, but these errors were encountered: