MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / hasMore

Method hasMore

src/common/classes/stack.h:99–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97 }
98
99 bool hasMore(FB_SIZE_T value) const
100 {
101 for (const Entry* stk = this; stk; stk = stk->next)
102 {
103 FB_SIZE_T c = static_cast<const inherited*>(stk)->getCount();
104 if (value < c)
105 {
106 return true;
107 }
108 value -= c;
109 }
110
111 return false;
112 }
113
114 }; // class Entry
115

Callers

nothing calls this directly

Calls 1

getCountMethod · 0.45

Tested by

no test coverage detected