Txeo v0.1
A Developer-Friendly TensorFlow C++ Wrapper
|
#include <TensorIterator.h>
Public Types | |
using | value_type = T |
using | pointer = T * |
using | reference = T & |
using | difference_type = std::ptrdiff_t |
using | iterator_category = std::random_access_iterator_tag |
Public Member Functions | |
TensorIterator (T *elements, std::ptrdiff_t step=1) | |
reference | operator* () const |
pointer | operator-> () const |
TensorIterator & | operator++ () |
TensorIterator | operator++ (int) |
TensorIterator & | operator-- () |
TensorIterator | operator-- (int) |
TensorIterator & | operator+= (const difference_type &val) |
TensorIterator & | operator-= (const difference_type &val) |
difference_type | operator- (const TensorIterator &other) const |
bool | operator== (const TensorIterator &other) const |
bool | operator!= (const TensorIterator &other) const |
bool | operator< (const TensorIterator &other) const |
bool | operator> (const TensorIterator &other) const |
bool | operator<= (const TensorIterator &other) const |
bool | operator>= (const TensorIterator &other) const |
Friends | |
TensorIterator | operator+ (TensorIterator iterator, const difference_type &val) |
TensorIterator | operator+ (const difference_type &val, TensorIterator iterator) |
TensorIterator | operator- (TensorIterator iterator, const difference_type &val) |
Definition at line 11 of file TensorIterator.h.
using txeo::TensorIterator< T >::difference_type = std::ptrdiff_t |
Definition at line 16 of file TensorIterator.h.
using txeo::TensorIterator< T >::iterator_category = std::random_access_iterator_tag |
Definition at line 17 of file TensorIterator.h.
using txeo::TensorIterator< T >::pointer = T * |
Definition at line 14 of file TensorIterator.h.
using txeo::TensorIterator< T >::reference = T & |
Definition at line 15 of file TensorIterator.h.
using txeo::TensorIterator< T >::value_type = T |
Definition at line 13 of file TensorIterator.h.
|
inline |
Definition at line 19 of file TensorIterator.h.
|
inline |
Definition at line 78 of file TensorIterator.h.
|
inline |
Definition at line 21 of file TensorIterator.h.
|
inline |
Definition at line 24 of file TensorIterator.h.
|
inline |
Definition at line 29 of file TensorIterator.h.
|
inline |
Definition at line 46 of file TensorIterator.h.
|
inline |
Definition at line 71 of file TensorIterator.h.
|
inline |
Definition at line 35 of file TensorIterator.h.
|
inline |
Definition at line 40 of file TensorIterator.h.
|
inline |
Definition at line 51 of file TensorIterator.h.
|
inline |
Definition at line 22 of file TensorIterator.h.
|
inline |
Definition at line 81 of file TensorIterator.h.
|
inline |
Definition at line 83 of file TensorIterator.h.
|
inline |
Definition at line 75 of file TensorIterator.h.
|
inline |
Definition at line 82 of file TensorIterator.h.
|
inline |
Definition at line 86 of file TensorIterator.h.
|
friend |
Definition at line 61 of file TensorIterator.h.
|
friend |
Definition at line 56 of file TensorIterator.h.
|
friend |
Definition at line 66 of file TensorIterator.h.