| 92 | explicit Matrix( const no_init_matrix& obj) : VECTOR(Rf_allocMatrix(RTYPE, obj.nrow(), obj.ncol())), nrows(obj.nrow()) {} |
| 93 | |
| 94 | inline int ncol() const { |
| 95 | return VECTOR::dims()[1]; |
| 96 | } |
| 97 | inline int nrow() const { |
| 98 | return nrows ; |
| 99 | } |
no outgoing calls
no test coverage detected