-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
At the moment i declared all the members inside data_t class as vector's because they are Array's
webarkit-jsfeat-cpp/src/types/types.h
Line 13 in c02edb5
| template <typename T> using Array = std::vector<T>; |
But maybe we could try to use valarray instead of vector STL container, it has some advantages, for example it includes math functions (abs sin, cos..) and slicing yhe array that could be very useful. I will make some test, and will report here.