mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +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)
|