ianfr / adsl-cpp

A Data Science Library for C++
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

Implement `vector` methods for `DataList` #20

Open ianfr opened 2 years ago

ianfr commented 2 years ago

It would be really good to create methods for DataList that act in a way very similar to std::vector such as:

Along with a larger selection of constructors - maybe even a curly brace initializer!

This would let users use DataLists as a direct stand-in for vectors plus all the ADSL functionality.

These methods can probably just be wrappers around the DataList.vals field's methods.