Date: Tue, 08 Oct 2019 18:41:04 +0300
For the class std::valarray<T> there is the following deduction guide
template<class T, size_t cnt> valarray(const T(&)[cnt], size_t) -> valarray;
However such a constructor is not listed among constructors of the class std::valaary<T>.
Is it correct?
With nest regards,
Vlad from Moscow
You can meet me at http://cpp.forum24.ru/ or www.stackoverflow.com or http://ru.stackoverflow.com
template<class T, size_t cnt> valarray(const T(&)[cnt], size_t) -> valarray;
However such a constructor is not listed among constructors of the class std::valaary<T>.
Is it correct?
With nest regards,
Vlad from Moscow
You can meet me at http://cpp.forum24.ru/ or www.stackoverflow.com or http://ru.stackoverflow.com
Received on 2019-10-08 10:43:18