summaryrefslogtreecommitdiffhomepage
path: root/include/stc/clist.h
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2023-01-19 19:27:07 +0100
committerTyge Løvset <[email protected]>2023-01-19 19:27:07 +0100
commit5aa48d538569463ffeda976d21f79edc5f276be4 (patch)
tree6bbd87bc9e5041b2c3b69e14ec175536b8418630 /include/stc/clist.h
parent0c4c4f8bba17562735b67b2923cd23c773aa53a7 (diff)
downloadSTC-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/clist.h')
-rw-r--r--include/stc/clist.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/stc/clist.h b/include/stc/clist.h
index 37fa447a..ac687fc9 100644
--- a/include/stc/clist.h
+++ b/include/stc/clist.h
@@ -134,6 +134,10 @@ STC_INLINE _cx_value* _cx_memb(_emplace)(_cx_self* self, _cx_raw raw)
#endif // !i_no_emplace
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_back)(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, size_t n) { return true; }
STC_INLINE bool _cx_memb(_empty)(const _cx_self* self) { return self->last == NULL; }
STC_INLINE void _cx_memb(_clear)(_cx_self* self) { _cx_memb(_drop)(self); }