| 231 | /// @return `true` if at least one item has been removed |
| 232 | template <typename U> |
| 233 | [[nodiscard]] bool remove(const U& value) noexcept |
| 234 | { |
| 235 | return removeAll([&](auto& item) { return item == value; }); |
| 236 | } |
| 237 | }; |
| 238 | |
| 239 | /// @brief A Vector that can hold up to `N` elements inline and `> N` on heap |