Re: Is there a way to get Dolby Headphone system-wide on any PC?
Reply #37 –
Hi!
By omitting the second template parameter you'll get univector with runtime defined size and all the member functions and constructors from std::vector.
univector<double> v1(100); // runtime
univector<double, 100> v2; // compile-time
univector<double, 0> v3(v2); // takes data() and size() from any vector-like class (similar to array_view from the future C++ standards)