pub trait ArrayInstanceRound: ArrayInstance {
    type Round: HasAfEnum;
    fn round(&self) -> ArrayExt<Self::Round>;
}
Expand description

Defines a rounding method round.

Associated Types

Required methods

Round to the nearest integer, element-wise.

Implementors