SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Represents an index that can be used for subscripting vectors, matrices, and arrays. More...
#include <rw/rwslice.h>
Public Member Functions | |
RWRange (int begin, int end) | |
RWRange (int begin, int end, int stride) | |
Public Member Functions inherited from RWSlice | |
RWSlice (const char *s) | |
RWSlice (int begin, int length) | |
RWSlice (int begin, int length, int stride) | |
Additional Inherited Members | |
Related Symbols inherited from RWSlice | |
const RWSlice & | RWAll |
An RWRange object is an index which can be used for subscripting vectors, matrices, and arrays. By subscripting with RWRange objects, you create views of selected elements. These new views are vectors, matrices, or arrays in their own right, rather than simply helper classes. This means that a view created with subscripting can be used as an rvalue, an lvalue, or kept as an object for use later.
The class RWRange is derived from RWSlice. It can be used to initialize an RWSlice object as follows:
Program output:
|
inline |
Constructs an object which indexes starting at element begin and ending with element end. If end is smaller than begin, the elements are accessed in reverse order.
|
inline |
Constructs an object which indexes starting at element begin and ending with element end. If end is smaller than begin, the elements are accessed in reverse order. The parameter stride gives the increment between selected elements; it must always be greater than 0.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |