MCPcopy Create free account
hub / github.com/apache/datafusion / is_numeric

Method is_numeric

datafusion/common/src/types/native.rs:505–507  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

503impl NativeType {
504 #[inline]
505 pub fn is_numeric(&self) -> bool {
506 self.is_integer() || self.is_float() || self.is_decimal()
507 }
508
509 #[inline]
510 pub fn is_integer(&self) -> bool {

Callers 15

get_valid_typesFunction · 0.80
coerced_typeMethod · 0.80
matches_native_typeMethod · 0.80
default_casted_typeMethod · 0.80
fromMethod · 0.80
string_numeric_coercionFunction · 0.80
binary_numeric_coercionFunction · 0.80
parse_sql_unary_opMethod · 0.80
validateMethod · 0.80

Calls 3

is_integerMethod · 0.80
is_floatMethod · 0.80
is_decimalMethod · 0.80

Tested by 2

coerced_typeMethod · 0.64
numeric_columnsMethod · 0.64