aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2025-12-22 12:50:46 +0100
committerAlex Rønne Petersen <alex@alexrp.com>2025-12-22 12:50:46 +0100
commitaa0249d74e573742db3567f589fc6e4a00e1fff8 (patch)
treecce61cb7f02072d205a12ae451922f0bf09c13ce /lib/std/math
parent6b9125cbe662d530160e0732c856aa0da86894c0 (diff)
parent02c5f05e2f0e8e786f0530014e35c1520efd0084 (diff)
downloadzig-aa0249d74e573742db3567f589fc6e4a00e1fff8.tar.gz
zig-aa0249d74e573742db3567f589fc6e4a00e1fff8.zip
Merge pull request 'std.ascii: rename indexOf functions to find' (#30101) from adria/zig:indexof-find into master
Reviewed-on: https://codeberg.org/ziglang/zig/pulls/30101 Reviewed-by: Andrew Kelley <andrewrk@noreply.codeberg.org> Reviewed-by: mlugg <mlugg@noreply.codeberg.org>
Diffstat (limited to 'lib/std/math')
-rw-r--r--lib/std/math/big/int.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/math/big/int.zig b/lib/std/math/big/int.zig
index a6b38aac63..423b6d1c28 100644
--- a/lib/std/math/big/int.zig
+++ b/lib/std/math/big/int.zig
@@ -1694,8 +1694,8 @@ pub const Mutable = struct {
// Handle trailing zero-words of divisor/dividend. These are not handled in the following
// algorithms.
// Note, there must be a non-zero limb for either.
- // const x_trailing = std.mem.indexOfScalar(Limb, x.limbs[0..x.len], 0).?;
- // const y_trailing = std.mem.indexOfScalar(Limb, y.limbs[0..y.len], 0).?;
+ // const x_trailing = std.mem.findScalar(Limb, x.limbs[0..x.len], 0).?;
+ // const y_trailing = std.mem.findScalar(Limb, y.limbs[0..y.len], 0).?;
const x_trailing = for (x.limbs[0..x.len], 0..) |xi, i| {
if (xi != 0) break i;