ArmNN
 21.08
Int32ToInt32tEncoder Class Reference

#include <BaseIterator.hpp>

Inheritance diagram for Int32ToInt32tEncoder:
TypedIterator< int32_t, Encoder< int32_t > > Encoder< int32_t > BaseIterator

Public Member Functions

 Int32ToInt32tEncoder (int32_t *data)
 
 Int32ToInt32tEncoder ()
 
void Set (int32_t right) override
 
int32_t Get () const override
 
- Public Member Functions inherited from TypedIterator< int32_t, Encoder< int32_t > >
 TypedIterator (int32_t *data=nullptr)
 
void Reset (void *data) override
 
TypedIteratoroperator++ () override
 
TypedIteratoroperator+= (const unsigned int increment) override
 
TypedIteratoroperator-= (const unsigned int increment) override
 
TypedIteratoroperator[] (const unsigned int index) override
 
- Public Member Functions inherited from Encoder< int32_t >
 Encoder ()
 
virtual ~Encoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 

Additional Inherited Members

- Protected Attributes inherited from TypedIterator< int32_t, Encoder< int32_t > >
int32_t * m_Iterator
 
int32_t * m_Start
 

Detailed Description

Definition at line 711 of file BaseIterator.hpp.

Constructor & Destructor Documentation

◆ Int32ToInt32tEncoder() [1/2]

Int32ToInt32tEncoder ( int32_t *  data)
inline

Definition at line 714 of file BaseIterator.hpp.

715  : TypedIterator(data){}

◆ Int32ToInt32tEncoder() [2/2]

Definition at line 717 of file BaseIterator.hpp.

Member Function Documentation

◆ Get()

int32_t Get ( ) const
inlineoverridevirtual

Implements Encoder< int32_t >.

Definition at line 725 of file BaseIterator.hpp.

726  {
727  return *m_Iterator;
728  }

◆ Set()

void Set ( int32_t  right)
inlineoverridevirtual

Implements Encoder< int32_t >.

Definition at line 720 of file BaseIterator.hpp.

721  {
722  *m_Iterator = right;
723  }

The documentation for this class was generated from the following file: