arraykit 1.2.0__cp314-cp314t-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
arraykit/block_index.h ADDED
@@ -0,0 +1,15 @@
1
+ # ifndef ARRAYKIT_SRC_BLOCK_INDEX_H_
2
+ # define ARRAYKIT_SRC_BLOCK_INDEX_H_
3
+
4
+ # include "Python.h"
5
+
6
+ extern PyTypeObject BlockIndexType;
7
+ extern PyObject * ErrorInitTypeBlocks;
8
+ extern PyTypeObject BIIterType;
9
+ extern PyTypeObject BIIterSeqType;
10
+ extern PyTypeObject BIIterSliceType;
11
+ extern PyTypeObject BIIterBoolType;
12
+ extern PyTypeObject BIIterContiguousType;
13
+ extern PyTypeObject BIIterBlockType;
14
+
15
+ # endif /* ARRAYKIT_SRC_BLOCK_INDEX_H_ */