mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
16 lines
230 B
Rust
16 lines
230 B
Rust
use num::Num;
|
|
|
|
/// Integer division that rounds up.
|
|
pub fn div_up<T>(p: T, q: T) -> T
|
|
where
|
|
T: Num + Clone,
|
|
{
|
|
let d = p.clone() / q.clone();
|
|
|
|
if p % q == T::zero() {
|
|
d
|
|
} else {
|
|
T::one() + d
|
|
}
|
|
}
|