@@ -11,13 +11,13 @@ cdef extern from "khash_python.h":
11
11
PyObject ** keys
12
12
size_t * vals
13
13
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)
21
21
22
22
bint kh_exist_pymap(kh_pymap_t* , khiter_t)
23
23
@@ -27,13 +27,13 @@ cdef extern from "khash_python.h":
27
27
PyObject ** keys
28
28
size_t * vals
29
29
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)
37
37
38
38
bint kh_exist_pyset(kh_pyset_t* , khiter_t)
39
39
@@ -45,13 +45,13 @@ cdef extern from "khash_python.h":
45
45
kh_cstr_t * keys
46
46
size_t * vals
47
47
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
55
55
56
56
bint kh_exist_str(kh_str_t* , khiter_t) nogil
57
57
@@ -61,13 +61,13 @@ cdef extern from "khash_python.h":
61
61
int64_t * keys
62
62
size_t * vals
63
63
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
71
71
72
72
bint kh_exist_int64(kh_int64_t* , khiter_t) nogil
73
73
@@ -79,13 +79,13 @@ cdef extern from "khash_python.h":
79
79
khuint64_t * keys
80
80
size_t * vals
81
81
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
89
89
90
90
bint kh_exist_uint64(kh_uint64_t* , khiter_t) nogil
91
91
@@ -95,13 +95,13 @@ cdef extern from "khash_python.h":
95
95
float64_t * keys
96
96
size_t * vals
97
97
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
105
105
106
106
bint kh_exist_float64(kh_float64_t* , khiter_t) nogil
107
107
@@ -111,13 +111,13 @@ cdef extern from "khash_python.h":
111
111
int32_t * keys
112
112
size_t * vals
113
113
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
121
121
122
122
bint kh_exist_int32(kh_int32_t* , khiter_t) nogil
123
123
@@ -129,12 +129,12 @@ cdef extern from "khash_python.h":
129
129
kh_cstr_t * keys
130
130
PyObject ** vals
131
131
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
139
139
140
140
bint kh_exist_strbox(kh_strbox_t* , khiter_t) nogil
0 commit comments