[libc-commits] [libc] [libc][FixedVector] Add more helper methods (PR #94278)
via libc-commits
libc-commits at lists.llvm.org
Wed Jun 5 14:34:49 PDT 2024
================
@@ -24,6 +24,16 @@ template <typename T, size_t CAPACITY> class FixedVector {
public:
constexpr FixedVector() = default;
+ template <typename It> constexpr FixedVector(It begin, It end) {
----------------
PiJoules wrote:
Restricted it to only cpp::array input iterators.
https://github.com/llvm/llvm-project/pull/94278
More information about the libc-commits
mailing list