sincerely
Singaporean
If you have not done so, read this full tutorial on how to use SGEXTN to build an application.
SGLDeque::SGLDeque(int count);
SGLDeque::SGLDeque(int count, const T& defaultValue);
void SGLDeque::assign(int count, const T& defaultValue);
[[nodiscard]] const T& SGLDeque::at(int i) const;
[[nodiscard]] T& SGLDeque::at(int i);
[[nodiscard]] const T& SGLDeque::back() const;
void SGLDeque::fill(const T& defaultValue);
[[nodiscard]] const T& SGLDeque::front() const;
[[nodiscard]] int SGLDeque::length() const;
[[nodiscard]] const T* SGLDeque::pointerToData(int n) const;
[[nodiscard]] T* SGLDeque::pointerToData(int n);
void SGLDeque::pushBack(const T& x);
void SGLDeque::pushFront(const T& x);
void SGLDeque::reserve(int newMemoryLength);
©2025 05524F.sg (Singapore)