DVUI

eq

Parameters

#
lhs:Cell
Cell
rhs:Cell
Cell

Source

Implementation

#
pub fn eq(lhs: Cell, rhs: Cell) bool {
        return lhs.col_num == rhs.col_num and lhs.row_num == rhs.row_num;
    }