-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Description
There are some places where it would clean up the code quite a bit to use C++ STL iterators and be compatible with their APIs.
Additionally, in this PR (apache/parquet-cpp#403) I had to allocate a separate vector to hold byte swapped values, when what I really want to do is iterate over the existing values in reverse (starting at the last valid byte) so I don't have to copy them into a separate container. This can be done with a std::reverse_iterator which allows one to use the ++ operator everywhere.
Reporter: Phillip Cloud / @cpcloud
Note: This issue was originally created as PARQUET-1159. Please see the migration documentation for further details.