mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
ec1b6f6673
See #1023 This also renames Nullable/Maybe to Optional
14 lines
472 B
Zig
14 lines
472 B
Zig
const builtin = @import("builtin");
|
|
const c = @import("c.zig");
|
|
const assert = @import("std").debug.assert;
|
|
|
|
pub const ValueRef = removeNullability(c.LLVMValueRef);
|
|
pub const ModuleRef = removeNullability(c.LLVMModuleRef);
|
|
pub const ContextRef = removeNullability(c.LLVMContextRef);
|
|
pub const BuilderRef = removeNullability(c.LLVMBuilderRef);
|
|
|
|
fn removeNullability(comptime T: type) type {
|
|
comptime assert(@typeId(T) == builtin.TypeId.Optional);
|
|
return T.Child;
|
|
}
|