D | BlockMethods.h | 54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument 56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block() 60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument 62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block() 347 inline RowsBlockXpr middleRows(Index startRow, Index numRows) in middleRows() argument 349 return RowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows() 353 inline ConstRowsBlockXpr middleRows(Index startRow, Index numRows) const in middleRows() argument 355 return ConstRowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows() 369 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow) in middleRows() argument 371 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, N, cols()); in middleRows() [all …]
|