- 
    
Bug
 - 
    Resolution: Out of scope
 - 
    
P2: Important
 - 
    None
 - 
    6.8.1
 - 
    None
 
template <typename InputIterator, if_input_iterator<InputIterator> = true> inline QVarLengthArray(InputIterator first, InputIterator last) : QVarLengthArray() { QtPrivate::reserveIfForwardIterator(this, first, last); std::copy(first, last, std::back_inserter(*this)); }
Because it does not support sentinels, it does not work well with std::ranges.