tiny.simd.PhastSeeds
Defined in tiny.simd.
API (2)
Actions
Public operations.
Fields and members
Public fields and members.
Source
Source: lib/simd/src/phast/family.zig:65
zig
pub const Seeds = struct { words: []const u32 = &.{}, pub fn get(self: Seeds, bucket_index: u32) u32 { std.debug.assert(@as(usize, bucket_index) < self.words.len * @sizeOf(u32)); const bit_index = (bucket_index & 3) * 8; return (self.words[bucket_index >> 2] >> @intCast(bit_index)) & 0xff; }};Source: lib/simd/src/root.zig:579
zig
pub const PhastSeeds = phast.PhastSeeds;Also reachable as
Audit
| Definitions | 2 |
|---|---|
| Public names | 4 |
| Members | 1 |
| Version | 26.7.0 |
| Revision | daab053ee433 |