blob: d0dd306680ae8199235bd2b5659e051642bd8df2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- coding: utf-8 -*-
from numpy cimport ndarray, uint8_t
cpdef bint checknull(object val)
cpdef bint checknull_old(object val)
cpdef ndarray[uint8_t] isnaobj(ndarray arr)
cdef bint is_null_datetime64(v)
cdef bint is_null_timedelta64(v)
cdef bint is_null_period(v)
|