Namespaces
Variants
Views
Actions

std::gslice_array

From cppreference.com
< cpp‎ | numeric‎ | valarray
Revision as of 20:04, 5 June 2013 by P12 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
 
 
Defined in header <valarray>
template< class T > class gslice_array;
(since C++11)

std::gslice_array is a helper template used by std::gslice subscript operator. It has reference semantics to a subset of the array specified by the std::gslice object.

Contents

Member types

Type Definition
value_type T

Member functions

constructs a gslice_array
(public member function) [edit]
destroys a gslice_array
(public member function) [edit]
assigns contents
(public member function) [edit]
performs arithmetic operation on the array referred by generic slice.
(public member function) [edit]

Example

See also

proxy to a subset of a valarray after applying a slice
(class template) [edit]