diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Array.cpp | 20 |
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) return _array.at(array_index); } +Node* Array::Back() +{ + return _array.back(); +} + +Node* Array::back() +{ + return _array.back(); +} + +Node* Array::Front() +{ + return _array.front(); +} + +Node* Array::front() +{ + return _array.front(); +} + Array::iterator Array::Begin() { return _array.begin(); |