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