blob: d4fbd283cc87408626023084400174c9d1d42f4a (
plain)
1
2
3
4
5
6
7
8
9
10
|
const Value = @import("../value.zig").Value;
const misc = @import("misc.zig");
// These can be accessed from either namespace.
pub const f = misc.f;
pub const t = misc.t;
pub fn pack(b: bool) Value {
return if (b) f else t;
}
|