util: add VecDeque

This is an STL-like container that interface-wise looks like std::deque, but
is backed by a (fixed size, with vector-like capacity/reserve) circular buffer.
This commit is contained in:
Pieter Wuille
2024-02-07 14:38:52 -05:00
parent 1040a1fc80
commit 62fd24af6a
2 changed files with 317 additions and 0 deletions

View File

@@ -333,6 +333,7 @@ BITCOIN_CORE_H = \
util/translation.h \
util/types.h \
util/ui_change_type.h \
util/vecdeque.h \
util/vector.h \
validation.h \
validationinterface.h \