Fixed most clippy warnings. Two remain but appear to be in the ndarray s![] macro itself.
One warning highlighted that the ne() implementation for NotNone which actually called eq() on the inner field. A default implementation of ne() is implied by eq(), so the buggy implementation could simply be removed.
Fixed most clippy warnings. Two remain but appear to be in the ndarray
s![]
macro itself.One warning highlighted that the
ne()
implementation forNotNone
which actually calledeq()
on the inner field. A default implementation ofne()
is implied byeq()
, so the buggy implementation could simply be removed.