[libc-commits] [libc] [libc][FixedVector] Add more helper methods (PR #94278)

via libc-commits libc-commits at lists.llvm.org
Wed Jun 5 05:52:23 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) {
----------------
lntue wrote:

I feel like this constructor template needs to be a bit more restrictive on the types.

https://github.com/llvm/llvm-project/pull/94278


More information about the libc-commits mailing list