MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / isInt64

Method isInt64

include/cpp/Variant.h:245–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243 return type==typeInt || (type==typeObject && valObject && valObject->__GetType()==vtInt);
244 }
245 bool Variant::isInt64() const
246 {
247 return type==typeInt64 || (type==typeObject && valObject && valObject->__GetType()==vtInt64);
248 }
249 bool Variant::isString() const
250 {
251 return type==typeString || (type==typeObject && valObject && valObject->__GetType()==vtString);

Callers

nothing calls this directly

Calls 1

__GetTypeMethod · 0.45

Tested by

no test coverage detected