summaryrefslogtreecommitdiffstats
path: root/src/Array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Array.cpp')
-rw-r--r--src/Array.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Array.cpp b/src/Array.cpp
index de1259e..49b8924 100644
--- a/src/Array.cpp
+++ b/src/Array.cpp
@@ -90,6 +90,26 @@ Node* Array::operator[](unsigned int array_index)
90 return _array.at(array_index); 90 return _array.at(array_index);
91} 91}
92 92
93Node* Array::Back()
94{
95 return _array.back();
96}
97
98Node* Array::back()
99{
100 return _array.back();
101}
102
103Node* Array::Front()
104{
105 return _array.front();
106}
107
108Node* Array::front()
109{
110 return _array.front();
111}
112
93Array::iterator Array::Begin() 113Array::iterator Array::Begin()
94{ 114{
95 return _array.begin(); 115 return _array.begin();