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

Method IsDefined

extern/ttmath/ttmathobjects.h:139–148  ·  view source on GitHub ↗

! this method returns true if such an object is defined (name exists) */

Source from the content-addressed store, hash-verified

137 this method returns true if such an object is defined (name exists)
138 */
139 bool IsDefined(const std::string & name)
140 {
141 Iterator i = table.find(name);
142
143 if( i != table.end() )
144 // we have this object in our table
145 return true;
146
147 return false;
148 }
149
150
151

Callers

nothing calls this directly

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected