Macaulay2 Engine
Loading...
Searching...
No Matches

◆ delete_rows()

template<typename Mat>
virtual bool MutableMat< Mat >::delete_rows ( size_t i,
size_t j )
inlinevirtual

Implements MutableMatrix.

Definition at line 570 of file mutablemat-defs.hpp.

572 {
573 size_t nrows = n_rows();
575 {
576 ERROR("row index out of range");
577 return false;
578 }
580 return true;
581 }
virtual size_t n_rows() const
const int ERROR
Definition m2-mem.cpp:55
bool error_row_bound(size_t r, size_t nrows)

References ERROR, error_row_bound(), mat, and n_rows().