MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / getint

Method getint

src/test/scriptnum10.h:114–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

verifyFunction · 0.45
CheckCreateIntFunction · 0.45

Calls 1

maxFunction · 0.85

Tested by

no test coverage detected