NumCpp
2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
|
Custom column iterator for NdArray. More...
#include <NdArrayIterators.hpp>
Inherits nc::NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >.
Public Types | |
using | difference_type = DifferenceType |
using | iterator_category = std::random_access_iterator_tag |
using | pointer = PointerType |
using | reference = value_type & |
using | size_type = SizeType |
using | value_type = dtype |
Public Member Functions | |
bool | operator!= (const self_type &rhs) const noexcept |
reference | operator* () const noexcept |
self_type | operator+ (const difference_type offset) const noexcept |
self_type & | operator++ () noexcept |
self_type | operator++ (int) noexcept |
self_type & | operator+= (const difference_type offset) noexcept |
self_type | operator- (const difference_type offset) const noexcept |
self_type | operator- (const difference_type offset) const noexcept |
difference_type | operator- (const self_type &rhs) const noexcept |
self_type & | operator-- () noexcept |
self_type | operator-- (int) noexcept |
self_type & | operator-= (const difference_type offset) noexcept |
pointer | operator-> () const noexcept |
bool | operator< (const self_type &rhs) const noexcept |
bool | operator<= (const self_type &rhs) const noexcept |
bool | operator== (const self_type &rhs) const noexcept |
bool | operator> (const self_type &rhs) const noexcept |
bool | operator>= (const self_type &rhs) const noexcept |
reference | operator[] (const difference_type offset) const noexcept |
Custom column iterator for NdArray.
using nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type = DifferenceType |
using nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::iterator_category = std::random_access_iterator_tag |
using nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::pointer = PointerType |
using nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::reference = value_type& |
using nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::size_type = SizeType |
using nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::value_type = dtype |
|
inlinenoexceptinherited |
Iterator not-equality operator
rhs |
|
inlinenoexcept |
Iterator dereference
|
inlinenoexcept |
|
inlinenoexcept |
Iterator prefix incrament operator
|
inlinenoexcept |
Iterator postfix incrament operator
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
Iterator difference operator
rhs |
|
inlinenoexcept |
Iterator prefix decrament operator
|
inlinenoexcept |
Iterator postfix decrament operator
|
inlinenoexcept |
|
inlinenoexcept |
Iterator pointer operator
|
inlinenoexceptinherited |
Iterator less than operator
rhs |
|
inlinenoexceptinherited |
Iterator less than equal operator
rhs |
|
inlinenoexceptinherited |
Iterator equality operator
rhs |
|
inlinenoexceptinherited |
Iterator greater than operator
rhs |
|
inlinenoexceptinherited |
Iterator greater than equal operator
rhs |
|
inlinenoexcept |
Iterator access operator
offset |