I'm trying to create a pointer to a vector of floats that I have, so that I can pass it to a generic function that looks something like this:
foo<Type>(Type *const *, size_t)
However, as I'm somewhat new to c++, I'm having difficulties understanding how the syntax in the first parameter should be interpreted, in particular the " *const * ". What exactly would I need to put as an argument?
Any help would be appreciated!