Commit 1e207f1edd
Changed files (1)
lib
std
math
big
lib/std/math/big/int.zig
@@ -935,9 +935,6 @@ pub const Mutable = struct {
/// The upper bound for r limb count is `b.limbs.len`.
/// The upper bound for q limb count is given by `a.limbs`.
///
- /// If `allocator` is provided, it will be used for temporary storage to improve
- /// multiplication performance. `error.OutOfMemory` is handled with a fallback algorithm.
- ///
/// `limbs_buffer` is used for temporary storage. The amount required is given by `calcDivLimbsBufferLen`.
pub fn divFloor(
q: *Mutable,
@@ -1065,9 +1062,6 @@ pub const Mutable = struct {
/// The upper bound for r limb count is `b.limbs.len`.
/// The upper bound for q limb count is given by `a.limbs.len`.
///
- /// If `allocator` is provided, it will be used for temporary storage to improve
- /// multiplication performance. `error.OutOfMemory` is handled with a fallback algorithm.
- ///
/// `limbs_buffer` is used for temporary storage. The amount required is given by `calcDivLimbsBufferLen`.
pub fn divTrunc(
q: *Mutable,