Returns true if the resulting storage capacity is enough to fit the requested size
| 190 | |
| 191 | // Returns true if the resulting storage capacity is enough to fit the requested size |
| 192 | Y_FORCE_INLINE static constexpr bool ExpandBitSize(const size_t bitSize) noexcept { |
| 193 | return bitSize <= BitCount; |
| 194 | } |
| 195 | |
| 196 | Y_FORCE_INLINE void Sanitize() { |
| 197 | Data[Size - 1] &= TSanitizeMask<TChunk, BitCount % (8 * sizeof(TChunk))>::Value; |
no outgoing calls
no test coverage detected