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 --- ...armnn_1_1_graph_1_1_input_layers_accessor.xhtml | 262 +++++++++++++++++++++ 1 file changed, 262 insertions(+) create mode 100644 20.02/structarmnn_1_1_graph_1_1_input_layers_accessor.xhtml (limited to '20.02/structarmnn_1_1_graph_1_1_input_layers_accessor.xhtml') diff --git a/20.02/structarmnn_1_1_graph_1_1_input_layers_accessor.xhtml b/20.02/structarmnn_1_1_graph_1_1_input_layers_accessor.xhtml new file mode 100644 index 0000000000..49a43133d0 --- /dev/null +++ b/20.02/structarmnn_1_1_graph_1_1_input_layers_accessor.xhtml @@ -0,0 +1,262 @@ + + + + + + + + + + + + + +ArmNN: Graph::InputLayersAccessor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
Graph::InputLayersAccessor Struct Reference
+
+
+ +

Wrapper class returned by Graph::GetInputLayers() + More...

+ +

#include <Graph.hpp>

+ + + + + + + + +

+Public Member Functions

 InputLayersAccessor (const Graph &graph)
 
ConstIteratorInputs begin () const
 
ConstIteratorInputs end () const
 
+ + + +

+Public Attributes

const Graphm_Graph
 
+

Detailed Description

+

Wrapper class returned by Graph::GetInputLayers()

+ +

Definition at line 58 of file Graph.hpp.

+

Constructor & Destructor Documentation

+ +

◆ InputLayersAccessor()

+ +
+
+ + + + + +
+ + + + + + + + +
InputLayersAccessor (const Graphgraph)
+
+inlineexplicit
+
+ +

Definition at line 60 of file Graph.hpp.

+ +

Referenced by Graph::GetInputLayers().

+
60 : m_Graph(graph) {}
+
+
+
+

Member Function Documentation

+ +

◆ begin()

+ +
+
+ + + + + +
+ + + + + + + +
ConstIteratorInputs begin () const
+
+inline
+
+ +

Definition at line 62 of file Graph.hpp.

+ +

References Graph::InputLayersAccessor::m_Graph.

+ +

Referenced by Graph::cbegin().

+
63  {
64  return { m_Graph.m_Layers.begin(), &(PtrCast<const InputLayer>) };
65  }
+
+
+
+ +

◆ end()

+ +
+
+ + + + + +
+ + + + + + + +
ConstIteratorInputs end () const
+
+inline
+
+ +

Definition at line 67 of file Graph.hpp.

+ +

References Graph::GetNumInputs(), and Graph::InputLayersAccessor::m_Graph.

+ +

Referenced by Graph::cend().

+
68  {
69  return { std::next(m_Graph.m_Layers.begin(), static_cast<IteratorDifference>(m_Graph.GetNumInputs())),
70  &(PtrCast<const InputLayer>) };
71  }
Iterator::difference_type IteratorDifference
Definition: Graph.hpp:51
+ +
size_t GetNumInputs() const
Definition: Graph.hpp:176
+
+
+
+

Member Data Documentation

+ +

◆ m_Graph

+ + +
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1