From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/classarmnn_1_1_boolean_encoder.xhtml | 300 +++++++++++++++++++++++++++++ 1 file changed, 300 insertions(+) create mode 100644 20.02/classarmnn_1_1_boolean_encoder.xhtml (limited to '20.02/classarmnn_1_1_boolean_encoder.xhtml') diff --git a/20.02/classarmnn_1_1_boolean_encoder.xhtml b/20.02/classarmnn_1_1_boolean_encoder.xhtml new file mode 100644 index 0000000000..dee476ac61 --- /dev/null +++ b/20.02/classarmnn_1_1_boolean_encoder.xhtml @@ -0,0 +1,300 @@ + + + + + + + + + + + + + +ArmNN: BooleanEncoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
BooleanEncoder Class Reference
+
+
+ +

#include <BaseIterator.hpp>

+
+Inheritance diagram for BooleanEncoder:
+
+
+ + +TypedIterator< uint8_t, Encoder< bool > > +Encoder< bool > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 BooleanEncoder (uint8_t *data)
 
 BooleanEncoder ()
 
void Set (bool right) override
 
bool Get () const override
 
- Public Member Functions inherited from TypedIterator< uint8_t, Encoder< bool > >
 TypedIterator (uint8_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
 
TypedIteratorSetIndex (unsigned int index, unsigned int axisIndex=0) override
 
- Public Member Functions inherited from Encoder< bool >
 Encoder ()
 
virtual ~Encoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from TypedIterator< uint8_t, Encoder< bool > >
uint8_t * m_Iterator
 
uint8_t * m_Start
 
+

Detailed Description

+
+

Definition at line 458 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ BooleanEncoder() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + +
BooleanEncoder (uint8_t * data)
+
+inline
+
+ +

Definition at line 461 of file BaseIterator.hpp.

+
462  : TypedIterator(data) {}
+
+
+
+ +

◆ BooleanEncoder() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
BooleanEncoder ()
+
+inline
+
+ +

Definition at line 464 of file BaseIterator.hpp.

+
465  : BooleanEncoder(nullptr) {}
+
+
+
+

Member Function Documentation

+ +

◆ Get()

+ +
+
+ + + + + +
+ + + + + + + +
bool Get () const
+
+inlineoverridevirtual
+
+ +

Implements Encoder< bool >.

+ +

Definition at line 472 of file BaseIterator.hpp.

+
473  {
474  return *m_Iterator;
475  }
+
+
+
+ +

◆ Set()

+ +
+
+ + + + + +
+ + + + + + + + +
void Set (bool right)
+
+inlineoverridevirtual
+
+ +

Implements Encoder< bool >.

+ +

Definition at line 467 of file BaseIterator.hpp.

+
468  {
469  *m_Iterator = right;
470  }
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1