yui-core 0.5.0

Core Library for YUI
Documentation
1
2
3
4
5
6
//! [`DivRound`]: integer division rounded to the nearest, halves away from zero.

/// Division rounded to the nearest integer.
pub trait DivRound {
    fn div_round(&self, rhs: &Self) -> Self;
}