1 #ifndef BARRY_CELL_MEAT_HPP
2 #define BARRY_CELL_MEAT_HPP 1
4 template <
typename Cell_Type>
6 this->value = other.
value;
8 this->active = other.
active;
12 template <
typename Cell_Type>
14 this->value = std::move(other.value);
15 this->visited = std::move(other.visited);
16 this->active = std::move(other.active);
20 template<
typename Cell_Type>
26 return this->value ==
rhs.value;
30 template<
typename Cell_Type>
33 return !this->operator==(
rhs);
Entries in BArray. For now, it only has two members:
bool operator!=(const Cell< Cell_Type > &rhs) const
Cell< Cell_Type > & operator=(const Cell< Cell_Type > &other)
bool operator==(const Cell< Cell_Type > &rhs) const
Data_Type &&counter_ noexcept