MCPcopy Create free account
hub / github.com/Clarionos/clarion / is_numeric

Method is_numeric

libraries/fc/src/variant.cpp:348–361  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

346 return false;
347}
348bool variant::is_numeric()const
349{
350 switch( get_type() )
351 {
352 case int64_type:
353 case uint64_type:
354 case double_type:
355 case bool_type:
356 return true;
357 default:
358 return false;
359 }
360 return false;
361}
362
363bool variant::is_object()const
364{

Callers 1

from_variantFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected