mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-09-05 18:34:18 +00:00
12 lines
233 B
Cython
12 lines
233 B
Cython
|
|
from numpy cimport ndarray
|
|
|
|
|
|
cdef class NDArrayBacked:
|
|
cdef:
|
|
readonly ndarray _ndarray
|
|
readonly object _dtype
|
|
|
|
cpdef NDArrayBacked _from_backing_data(self, ndarray values)
|
|
cpdef __setstate__(self, state)
|