These constructors can be valuable for enhancing performance in scenarios where a user knows the row count and can preallocate memory.
I also considered adding a similar constructor for ColumnDateTime, but its public interface exclusively utilizes time_t, while uint32_t is an implementation detail. I'm unsure if extending the interface with implementation details would be a good idea.
These constructors can be valuable for enhancing performance in scenarios where a user knows the row count and can preallocate memory.
I also considered adding a similar constructor for
ColumnDateTime
, but its public interface exclusively utilizestime_t
, whileuint32_t
is an implementation detail. I'm unsure if extending the interface with implementation details would be a good idea.