Function vectorValue [src]
Prototype
pub fn vectorValue(self: *Builder, ty: Type, vals: []const Constant) Allocator.Error!Value
Parameters
self: *Builder
ty: Type
vals: []const Constant
Source
pub fn vectorValue(self: *Builder, ty: Type, vals: []const Constant) Allocator.Error!Value {
return (try self.vectorConst(ty, vals)).toValue();
}