diff options
| author | Tyge Løvset <[email protected]> | 2023-01-19 19:27:07 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2023-01-19 19:27:07 +0100 |
| commit | 5aa48d538569463ffeda976d21f79edc5f276be4 (patch) | |
| tree | 6bbd87bc9e5041b2c3b69e14ec175536b8418630 /include/stc/cpque.h | |
| parent | 0c4c4f8bba17562735b67b2923cd23c773aa53a7 (diff) | |
| download | STC-modified-5aa48d538569463ffeda976d21f79edc5f276be4.tar.gz STC-modified-5aa48d538569463ffeda976d21f79edc5f276be4.zip | |
Add a from_n() method to containers (and put_n() to maps), to support new initialization.
Diffstat (limited to 'include/stc/cpque.h')
| -rw-r--r-- | include/stc/cpque.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/stc/cpque.h b/include/stc/cpque.h index 28b5eb86..f1f03f8e 100644 --- a/include/stc/cpque.h +++ b/include/stc/cpque.h @@ -47,6 +47,12 @@ STC_API void _cx_memb(_push)(_cx_self* self, _cx_value value); STC_INLINE _cx_self _cx_memb(_init)(void) { return c_INIT(_cx_self){NULL}; } +STC_INLINE void _cx_memb(_put_n)(_cx_self* self, const _cx_raw* raw, size_t n) + { while (n--) _cx_memb(_push)(self, i_keyfrom(*raw++)); } + +STC_INLINE _cx_self _cx_memb(_from_n)(const _cx_raw* raw, size_t n) + { _cx_self cx = {0}; _cx_memb(_put_n)(&cx, raw, n); return cx; } + STC_INLINE bool _cx_memb(_reserve)(_cx_self* self, const size_t cap) { if (cap != self->_len && cap <= self->_cap) return true; _cx_value *d = (_cx_value *)c_REALLOC(self->data, cap*sizeof *d); |
