|
github.com/RhysU/ar
Autoregressive process modeling tools in header-only C++
|
An adapter to add striding over another (usually random access) iterator. More...
#include <ar.hpp>
Public Member Functions | |
| strided_adaptor (const strided_adaptor &o) | |
| strided_adaptor (Iterator x, difference_type n) | |
| strided_adaptor & | operator++ () |
| strided_adaptor | operator++ (int) |
| strided_adaptor & | operator+= (difference_type x) |
| strided_adaptor & | operator-- () |
| strided_adaptor | operator-- (int) |
| strided_adaptor & | operator-= (difference_type x) |
| reference | operator[] (difference_type n) |
| reference | operator* () |
| bool | operator== (const strided_adaptor &o) const |
| bool | operator!= (const strided_adaptor &o) const |
| bool | operator< (const strided_adaptor &o) const |
| difference_type | operator- (const strided_adaptor &o) const |
| strided_adaptor | operator+ (difference_type x) const |
An adapter to add striding over another (usually random access) iterator.
Modified from "C++ Cookbook" by Stephens, Diggins, Turkanis, and Cogswell. Copyright 2006 O'Reilly Media, Inc., ISBN 0-596-00761-2.
1.8.17