pub trait ArrayInstanceRound: ArrayInstance {
    type Round: HasAfEnum;

    fn round(&self) -> ArrayExt<Self::Round>;
}
Expand description

Defines a rounding method round.

Required Associated Types

Required Methods

Round to the nearest integer, element-wise.

Implementors