MCPcopy Create free account
hub / github.com/ElementsProject/elements / getint

Method getint

src/test/scriptnum10.h:113–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 }
112
113 int getint() const
114 {
115 if (m_value > std::numeric_limits<int>::max())
116 return std::numeric_limits<int>::max();
117 else if (m_value < std::numeric_limits<int>::min())
118 return std::numeric_limits<int>::min();
119 return m_value;
120 }
121
122 std::vector<unsigned char> getvch() const
123 {

Callers 4

verifyFunction · 0.45
CheckCreateIntFunction · 0.45
FUZZ_TARGET_INITFunction · 0.45
FUZZ_TARGETFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected