MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / getrow

Method getrow

src/ap.h:566–572  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

564 };
565
566 raw_vector<T> getrow(int iRow, int iColumnStart, int iColumnEnd)
567 {
568 if( (iColumnStart>iColumnEnd) || wrongRow(iRow) || wrongColumn(iColumnStart) || wrongColumn(iColumnEnd))
569 return raw_vector<T>(0, 0, 1);
570 else
571 return raw_vector<T>(&((*this)(iRow, iColumnStart)), iColumnEnd-iColumnStart+1, 1);
572 };
573
574 const_raw_vector<T> getcolumn(int iColumn, int iRowStart, int iRowEnd) const
575 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected