eth-dsa
Educational Data Structures & Algorithms Library
Loading...
Searching...
No Matches
array_list.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstddef>
4
6{
7
13template <typename T>
15{
16public:
17 array_list() = default;
18 ~array_list() = default;
19
20 void push_back(const T &)
21 {
22
23 }
24 [[nodiscard]] std::size_t size() const noexcept
25 {
26 return 0;
27 }
28};
29
30} // namespace eth::dsa::containers
void push_back(const T &)
Definition array_list.hpp:20
std::size_t size() const noexcept
Definition array_list.hpp:24
Definition array_list.hpp:6