Class managing the column index access of a cell. More...
Public Member Functions | |
| Cell_column_index () | |
| Default constructor. Sets to the column index to -1. | |
| Cell_column_index (index columnIndex) | |
| Stores the given column index. More... | |
| Cell_column_index (const Cell_column_index &cell) | |
| Copy constructor. More... | |
| Cell_column_index (Cell_column_index &&cell) noexcept | |
| Move constructor. More... | |
| index | get_column_index () const |
| Returns the MatIdx column index stored in the cell. More... | |
| void | set_column_index (index columnIndex) |
| Sets the column index to the given value. More... | |
| Cell_column_index & | operator= (Cell_column_index other) |
| Assign operator. | |
Class managing the column index access of a cell.
| index | MatIdx index type. |
|
inline |
Stores the given column index.
| columnIndex | Column index of the cell. |
|
inline |
Copy constructor.
| cell | Cell to copy. |
|
inlinenoexcept |
Move constructor.
| cell | Cell to move. |
|
inline |
Returns the MatIdx column index stored in the cell.
|
inline |
Sets the column index to the given value.
| columnIndex | Column index of the cell. |