tiny.hypothesis.BoundedArray
Defined in value.
Source
Source: lib/hypothesis/src/value.zig:212
zig
pub fn BoundedArray(comptime T: type, comptime capacity: usize) type { return struct { buf: [capacity]T = undefined, len: usize = 0, pub fn slice(self: *const @This()) []const T { return self.buf[0..self.len]; } };}Source: lib/hypothesis/src/root.zig:73
zig
pub const BoundedArray = value.BoundedArray;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |