struct LiteralNode [src]
Fields
literal: u16
freq: u16
Members
- max (Function)
Source
pub const LiteralNode = struct {
literal: u16,
freq: u16,
pub fn max() LiteralNode {
return .{
.literal = std.math.maxInt(u16),
.freq = std.math.maxInt(u16),
};
}
}