We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0242d8f commit 249819eCopy full SHA for 249819e
src/integer_mod_q/mat_zq/get.rs
@@ -270,30 +270,6 @@ impl MatrixGetSubmatrix for MatZq {
270
modulus: self.get_mod(),
271
})
272
}
273
-
274
- fn get_rows(&self) -> Vec<Self> {
275
- let mut rows = std::vec![];
276
277
- for i in 0..self.get_num_rows() {
278
- // replace with self.get_row_unchecked once available
279
- let entry = self.get_row(i).unwrap();
280
- rows.push(entry);
281
- }
282
283
- rows
284
285
286
- fn get_columns(&self) -> Vec<Self> {
287
- let mut columns = std::vec![];
288
289
- for i in 0..self.get_num_columns() {
290
- // replace with self.get_column_unchecked once available
291
- let entry = self.get_column(i).unwrap();
292
- columns.push(entry);
293
294
295
- columns
296
297
298
299
impl MatZq {
0 commit comments