MCPcopy Create free account
hub / github.com/IntegralPilot/rustc_codegen_jvm / not_constant

Function not_constant

src/oomir/interpret.rs:695–711  ·  view source on GitHub ↗
(op1: Constant)

Source from the content-addressed store, hash-verified

693 if let Constant::I64(v) = self {
694 Some(*v)
695 } else {
696 None
697 }
698 }
699 fn as_u8(&self) -> Option<u8> {
700 if let Constant::U8(v) = self {
701 Some(*v)
702 } else {
703 None
704 }
705 }
706 fn as_u16(&self) -> Option<u16> {
707 if let Constant::U16(v) = self {
708 Some(*v)
709 } else {
710 None
711 }
712 }
713 fn as_u32(&self) -> Option<u32> {
714 if let Constant::U32(v) = self {

Callers 1

Calls 2

parse_constant_to_bigintFunction · 0.85
bigint_to_constantFunction · 0.85

Tested by

no test coverage detected