missing.pxd 471 B

1234567891011121314151617181920
  1. from numpy cimport (
  2. ndarray,
  3. uint8_t,
  4. )
  5. cpdef bint is_matching_na(object left, object right, bint nan_matches_none=*)
  6. cpdef bint check_na_tuples_nonequal(object left, object right)
  7. cpdef bint checknull(object val, bint inf_as_na=*)
  8. cpdef ndarray[uint8_t] isnaobj(ndarray arr, bint inf_as_na=*)
  9. cdef bint is_null_datetime64(v)
  10. cdef bint is_null_timedelta64(v)
  11. cdef bint checknull_with_nat_and_na(object obj)
  12. cdef class C_NAType:
  13. pass
  14. cdef C_NAType C_NA