You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Src/FastData/DeduplicationMode.cs
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,10 @@ public enum DeduplicationMode : byte
10
10
/// <summary>
11
11
/// Uses a hash set to deduplicate data. It is faster than sorting, but uses more memory. It does not change the order of keys.
12
12
/// </summary>
13
-
HashSetPreserveOrder,
13
+
HashSet,
14
14
15
15
/// <summary>
16
-
/// Uses sorting to deduplicate data. It is not as fast as <seealso cref="HashSetPreserveOrder" />, but it uses about half the memory. As a side effect, it changes the order of keys, which might be a desired side effect under certain circumstances.
16
+
/// Uses sorting to deduplicate data. It is not as fast as <seealso cref="HashSet" />, but it uses about half the memory. As a side effect, it changes the order of keys, which might be a desired side effect under certain circumstances.
17
17
/// </summary>
18
18
Sort,
19
-
20
-
/// <summary>
21
-
/// Same as <seealso cref="Sort" />, but input order is preserved.
0 commit comments