Closed japaric closed 9 years ago
e.g. impl Deref<Col> for MutCol, other candidates:
impl Deref<Col> for MutCol
Diag
MutDiag
Row
MutRow
View
MutView
I think this should let me cut down some implementations that are accesed via method calls: like at(), len(), slice() from the mutable version.
at()
len()
slice()
Not safe to do - can create immutable views from a mutable view.
e.g.
impl Deref<Col> for MutCol
, other candidates:Diag
/MutDiag
Row
/MutRow
View
/MutView
I think this should let me cut down some implementations that are accesed via method calls: like
at()
,len()
,slice()
from the mutable version.