Remove unused math module logic

This commit is contained in:
kayomn 2022-10-11 01:14:47 +01:00
parent e108486c17
commit 6ecf6779e5
2 changed files with 0 additions and 7 deletions

View File

@ -1,6 +0,0 @@
///
/// Rounds the `Number` `value` up to the nearest `multiple`.
///
pub fn roundUp(comptime Number: type, value: Number, multiple: Number) Number {
return value + @mod(@mod(multiple - value, multiple), multiple);
}

View File

@ -3,7 +3,6 @@ const ext = @cImport({
}); });
const io = @import("./io.zig"); const io = @import("./io.zig");
const math = @import("./math.zig");
const mem = @import("./mem.zig"); const mem = @import("./mem.zig");
const meta = @import("./meta.zig"); const meta = @import("./meta.zig");
const oar = @import("./oar.zig"); const oar = @import("./oar.zig");