Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Celerity/Collections/CuckooFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ private static int ExpectedItemsForSource(IEnumerable<T> source)
/// <summary>
/// Gets a value indicating whether the filter is full: an insertion has exhausted its eviction budget and a
/// fingerprint is parked in the single-entry victim cache. While <c>true</c>, <see cref="Add"/> throws and
/// <see cref="TryAdd"/> returns <c>false</c>; a successful <see cref="Remove"/> clears it.
/// <see cref="TryAdd"/> returns <c>false</c>. It clears when a <see cref="Remove"/> either takes the parked
/// victim itself or frees a slot in one of the victim's two candidate buckets so the victim can be
/// re-homed; a <see cref="Remove"/> elsewhere in the table leaves it <c>true</c>.
/// </summary>
public bool IsFull => _hasVictim;

Expand Down
Loading