Function toConst [src]

Prototype

pub fn toConst(self: Value) ?Constant

Parameters

self: Value

Source

pub fn toConst(self: Value) ?Constant { return switch (self.unwrap()) { .instruction, .metadata => null, .constant => |constant| constant, }; }