Yoba Perl
array.hpp
1 #ifndef YOBAPERL_ARRAY_HPP
2 #define YOBAPERL_ARRAY_HPP
3 
4 #include "yobaperl/common.hpp"
5 #include "yobaperl/variable.hpp"
6 #include "yobaperl/array_iterator.hpp"
7 
8 namespace yoba {
9 
10 
11 
12 //TODO av_delete
13 //TODO av_fill
26 class YOBAPERL_EXPORT Array : public Variable
27 {
28 public:
29  using Iterator = class ArrayIterator;
30 
31 
32 
39  Array(Perl & perl, AV * av, bool increase_refcount);
40 
41 
42 
44 
55  Scalar get(const SSize_t index) const;
56 
67  Scalar getFirst() const;
68 
79  Scalar getLast() const;
80 
91  Array & replace(const SSize_t index, const Scalar & scalar);
92 
101  Array & push(const Scalar & scalar);
102 
111  Array & push(const Array & array);
112  Array & push(const std::vector<Scalar> & scalars);
113  Array & push(const std::list<Scalar> & scalars);
114 
123  Array & unshift(const Scalar & scalar);
124 
133  Array & unshift(const Array & array);
134  Array & unshift(const std::vector<Scalar> & scalars);
135  Array & unshift(const std::list<Scalar> & scalars);
136 
147  Scalar pop();
148 
159  Scalar shift();
160 
167  Array & clear();
168 
170 
171 
172 
174 
181  int getSize() const;
182 
189  bool isEmpty() const;
190 
197  bool isExists(SSize_t index) const;
198 
203  Array & reserve(SSize_t size);
204 
213  Array makeCopy() const;
214 
221  Scalar makeRef() const;
222 
227  std::string toString() const;
228 
233  std::vector<Scalar> toVector() const;
234 
239  std::list<Scalar> toList() const;
240 
245  Iterator begin() const;
246 
251  Iterator end() const;
252 
254 
255 
256 
258 
263  AV * getAV() const;
264 
266 
267 
268 
270 
275  Scalar operator[] (const SSize_t index) const noexcept;
276 
281  Array & operator+= (const Scalar & scalar);
282 
287  Array & operator<< (const Scalar & scalar);
288 
297  Array operator+ (const Array & other) const;
298 
303  operator bool() const;
304 
306 
307 
308 
309 protected:
310  void _store(const int index, Scalar scalar);
311  void _push(Scalar scalar);
312 
313  bool _checkIndex(const SSize_t index) const;
314 
315  SV ** _getFirstSV() const;
316  SV ** _getLastSV() const;
317 };
318 
319 
320 
321 } // namespace yoba
322 
323 #endif // YOBAPERL_ARRAY_HPP
Array reference
Definition: array.hpp:26
Definition: array.cpp:5
Array iterator.
Base class for perl variables.
Definition: variable.hpp:20
Main class.
Definition: perl.hpp:32
class ArrayIterator Iterator
Type alias.
Definition: array.hpp:29
Scalar reference
Definition: scalar.hpp:24