zig/doc/langref/struct_default_value.zig

12 lines
169 B
Zig
Raw Normal View History

const Threshold = struct {
minimum: f32,
maximum: f32,
const default: Threshold = .{
.minimum = 0.25,
.maximum = 0.75,
};
};
// syntax