Chess Engine
A Chess Engine project written in C++.
|
Public Types | |
using | iterator_category = std::forward_iterator_tag |
using | value_type = Piece |
using | difference_type = std::ptrdiff_t |
using | pointer = const Piece* |
using | reference = const Piece& |
Public Member Functions | |
constexpr | Iterator (uint8_t value) |
constexpr Piece | operator* () const |
constexpr Iterator & | operator++ () |
constexpr Iterator | operator++ (int) |
constexpr bool | operator== (const Iterator &other) const |
constexpr bool | operator!= (const Iterator &other) const |