std::valarray<T>::operator[]
From cppreference.com
const T& operator[]( std::size_t pos ) const; |
(1) | |
T& operator[]( std::size_t pos ); |
(2) | |
std::valarray<T> operator[]( std::slice slicearr ) const; |
(3) | |
std::slice_array<T> operator[]( std::slice slicearr ); |
(4) | |
|