Merge pull request #13096 from mitaclaw/ranges-modernization-7-rewrite

Ranges Algorithms Modernization - Rewrite
This commit is contained in:
JMC47 2024-10-27 19:17:01 -04:00 committed by GitHub
commit 96c9591b99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 26 additions and 38 deletions

View file

@ -47,7 +47,7 @@ private:
std::array<uint32_t, 36 + sizeof...(ExtraMatches)> _conns;
std::optional<V> _val;
TrieEntry() { std::fill(_conns.begin(), _conns.end(), INVALID_CONN); }
TrieEntry() { _conns.fill(INVALID_CONN); }
};
constexpr size_t IndexOf(char c) const