@@ -11,13 +11,13 @@ cdef extern from "khash_python.h":
1111 PyObject ** keys
1212 size_t * vals
1313
14- inline kh_pymap_t* kh_init_pymap()
15- inline void kh_destroy_pymap(kh_pymap_t* )
16- inline void kh_clear_pymap(kh_pymap_t* )
17- inline khint_t kh_get_pymap(kh_pymap_t* , PyObject* )
18- inline void kh_resize_pymap(kh_pymap_t* , khint_t)
19- inline khint_t kh_put_pymap(kh_pymap_t* , PyObject* , int * )
20- inline void kh_del_pymap(kh_pymap_t* , khint_t)
14+ kh_pymap_t* kh_init_pymap()
15+ void kh_destroy_pymap(kh_pymap_t* )
16+ void kh_clear_pymap(kh_pymap_t* )
17+ khint_t kh_get_pymap(kh_pymap_t* , PyObject* )
18+ void kh_resize_pymap(kh_pymap_t* , khint_t)
19+ khint_t kh_put_pymap(kh_pymap_t* , PyObject* , int * )
20+ void kh_del_pymap(kh_pymap_t* , khint_t)
2121
2222 bint kh_exist_pymap(kh_pymap_t* , khiter_t)
2323
@@ -27,13 +27,13 @@ cdef extern from "khash_python.h":
2727 PyObject ** keys
2828 size_t * vals
2929
30- inline kh_pyset_t* kh_init_pyset()
31- inline void kh_destroy_pyset(kh_pyset_t* )
32- inline void kh_clear_pyset(kh_pyset_t* )
33- inline khint_t kh_get_pyset(kh_pyset_t* , PyObject* )
34- inline void kh_resize_pyset(kh_pyset_t* , khint_t)
35- inline khint_t kh_put_pyset(kh_pyset_t* , PyObject* , int * )
36- inline void kh_del_pyset(kh_pyset_t* , khint_t)
30+ kh_pyset_t* kh_init_pyset()
31+ void kh_destroy_pyset(kh_pyset_t* )
32+ void kh_clear_pyset(kh_pyset_t* )
33+ khint_t kh_get_pyset(kh_pyset_t* , PyObject* )
34+ void kh_resize_pyset(kh_pyset_t* , khint_t)
35+ khint_t kh_put_pyset(kh_pyset_t* , PyObject* , int * )
36+ void kh_del_pyset(kh_pyset_t* , khint_t)
3737
3838 bint kh_exist_pyset(kh_pyset_t* , khiter_t)
3939
@@ -45,13 +45,13 @@ cdef extern from "khash_python.h":
4545 kh_cstr_t * keys
4646 size_t * vals
4747
48- inline kh_str_t* kh_init_str() nogil
49- inline void kh_destroy_str(kh_str_t* ) nogil
50- inline void kh_clear_str(kh_str_t* ) nogil
51- inline khint_t kh_get_str(kh_str_t* , kh_cstr_t) nogil
52- inline void kh_resize_str(kh_str_t* , khint_t) nogil
53- inline khint_t kh_put_str(kh_str_t* , kh_cstr_t, int * ) nogil
54- inline void kh_del_str(kh_str_t* , khint_t) nogil
48+ kh_str_t* kh_init_str() nogil
49+ void kh_destroy_str(kh_str_t* ) nogil
50+ void kh_clear_str(kh_str_t* ) nogil
51+ khint_t kh_get_str(kh_str_t* , kh_cstr_t) nogil
52+ void kh_resize_str(kh_str_t* , khint_t) nogil
53+ khint_t kh_put_str(kh_str_t* , kh_cstr_t, int * ) nogil
54+ void kh_del_str(kh_str_t* , khint_t) nogil
5555
5656 bint kh_exist_str(kh_str_t* , khiter_t) nogil
5757
@@ -61,13 +61,13 @@ cdef extern from "khash_python.h":
6161 int64_t * keys
6262 size_t * vals
6363
64- inline kh_int64_t* kh_init_int64() nogil
65- inline void kh_destroy_int64(kh_int64_t* ) nogil
66- inline void kh_clear_int64(kh_int64_t* ) nogil
67- inline khint_t kh_get_int64(kh_int64_t* , int64_t) nogil
68- inline void kh_resize_int64(kh_int64_t* , khint_t) nogil
69- inline khint_t kh_put_int64(kh_int64_t* , int64_t, int * ) nogil
70- inline void kh_del_int64(kh_int64_t* , khint_t) nogil
64+ kh_int64_t* kh_init_int64() nogil
65+ void kh_destroy_int64(kh_int64_t* ) nogil
66+ void kh_clear_int64(kh_int64_t* ) nogil
67+ khint_t kh_get_int64(kh_int64_t* , int64_t) nogil
68+ void kh_resize_int64(kh_int64_t* , khint_t) nogil
69+ khint_t kh_put_int64(kh_int64_t* , int64_t, int * ) nogil
70+ void kh_del_int64(kh_int64_t* , khint_t) nogil
7171
7272 bint kh_exist_int64(kh_int64_t* , khiter_t) nogil
7373
@@ -79,13 +79,13 @@ cdef extern from "khash_python.h":
7979 khuint64_t * keys
8080 size_t * vals
8181
82- inline kh_uint64_t* kh_init_uint64() nogil
83- inline void kh_destroy_uint64(kh_uint64_t* ) nogil
84- inline void kh_clear_uint64(kh_uint64_t* ) nogil
85- inline khint_t kh_get_uint64(kh_uint64_t* , int64_t) nogil
86- inline void kh_resize_uint64(kh_uint64_t* , khint_t) nogil
87- inline khint_t kh_put_uint64(kh_uint64_t* , int64_t, int * ) nogil
88- inline void kh_del_uint64(kh_uint64_t* , khint_t) nogil
82+ kh_uint64_t* kh_init_uint64() nogil
83+ void kh_destroy_uint64(kh_uint64_t* ) nogil
84+ void kh_clear_uint64(kh_uint64_t* ) nogil
85+ khint_t kh_get_uint64(kh_uint64_t* , int64_t) nogil
86+ void kh_resize_uint64(kh_uint64_t* , khint_t) nogil
87+ khint_t kh_put_uint64(kh_uint64_t* , int64_t, int * ) nogil
88+ void kh_del_uint64(kh_uint64_t* , khint_t) nogil
8989
9090 bint kh_exist_uint64(kh_uint64_t* , khiter_t) nogil
9191
@@ -95,13 +95,13 @@ cdef extern from "khash_python.h":
9595 float64_t * keys
9696 size_t * vals
9797
98- inline kh_float64_t* kh_init_float64() nogil
99- inline void kh_destroy_float64(kh_float64_t* ) nogil
100- inline void kh_clear_float64(kh_float64_t* ) nogil
101- inline khint_t kh_get_float64(kh_float64_t* , float64_t) nogil
102- inline void kh_resize_float64(kh_float64_t* , khint_t) nogil
103- inline khint_t kh_put_float64(kh_float64_t* , float64_t, int * ) nogil
104- inline void kh_del_float64(kh_float64_t* , khint_t) nogil
98+ kh_float64_t* kh_init_float64() nogil
99+ void kh_destroy_float64(kh_float64_t* ) nogil
100+ void kh_clear_float64(kh_float64_t* ) nogil
101+ khint_t kh_get_float64(kh_float64_t* , float64_t) nogil
102+ void kh_resize_float64(kh_float64_t* , khint_t) nogil
103+ khint_t kh_put_float64(kh_float64_t* , float64_t, int * ) nogil
104+ void kh_del_float64(kh_float64_t* , khint_t) nogil
105105
106106 bint kh_exist_float64(kh_float64_t* , khiter_t) nogil
107107
@@ -111,13 +111,13 @@ cdef extern from "khash_python.h":
111111 int32_t * keys
112112 size_t * vals
113113
114- inline kh_int32_t* kh_init_int32() nogil
115- inline void kh_destroy_int32(kh_int32_t* ) nogil
116- inline void kh_clear_int32(kh_int32_t* ) nogil
117- inline khint_t kh_get_int32(kh_int32_t* , int32_t) nogil
118- inline void kh_resize_int32(kh_int32_t* , khint_t) nogil
119- inline khint_t kh_put_int32(kh_int32_t* , int32_t, int * ) nogil
120- inline void kh_del_int32(kh_int32_t* , khint_t) nogil
114+ kh_int32_t* kh_init_int32() nogil
115+ void kh_destroy_int32(kh_int32_t* ) nogil
116+ void kh_clear_int32(kh_int32_t* ) nogil
117+ khint_t kh_get_int32(kh_int32_t* , int32_t) nogil
118+ void kh_resize_int32(kh_int32_t* , khint_t) nogil
119+ khint_t kh_put_int32(kh_int32_t* , int32_t, int * ) nogil
120+ void kh_del_int32(kh_int32_t* , khint_t) nogil
121121
122122 bint kh_exist_int32(kh_int32_t* , khiter_t) nogil
123123
@@ -129,12 +129,12 @@ cdef extern from "khash_python.h":
129129 kh_cstr_t * keys
130130 PyObject ** vals
131131
132- inline kh_strbox_t* kh_init_strbox() nogil
133- inline void kh_destroy_strbox(kh_strbox_t* ) nogil
134- inline void kh_clear_strbox(kh_strbox_t* ) nogil
135- inline khint_t kh_get_strbox(kh_strbox_t* , kh_cstr_t) nogil
136- inline void kh_resize_strbox(kh_strbox_t* , khint_t) nogil
137- inline khint_t kh_put_strbox(kh_strbox_t* , kh_cstr_t, int * ) nogil
138- inline void kh_del_strbox(kh_strbox_t* , khint_t) nogil
132+ kh_strbox_t* kh_init_strbox() nogil
133+ void kh_destroy_strbox(kh_strbox_t* ) nogil
134+ void kh_clear_strbox(kh_strbox_t* ) nogil
135+ khint_t kh_get_strbox(kh_strbox_t* , kh_cstr_t) nogil
136+ void kh_resize_strbox(kh_strbox_t* , khint_t) nogil
137+ khint_t kh_put_strbox(kh_strbox_t* , kh_cstr_t, int * ) nogil
138+ void kh_del_strbox(kh_strbox_t* , khint_t) nogil
139139
140140 bint kh_exist_strbox(kh_strbox_t* , khiter_t) nogil
0 commit comments