Function intValue [src]
Prototype
pub fn intValue(self: *Builder, ty: Type, value: anytype) Allocator.Error!Value
Parameters
self: *Builder
ty: Type
Source
pub fn intValue(self: *Builder, ty: Type, value: anytype) Allocator.Error!Value {
return (try self.intConst(ty, value)).toValue();
}