Skip to content

Commit

Permalink
native aligned array (unsafe hell time)
Browse files Browse the repository at this point in the history
  • Loading branch information
akiraveliara committed Jan 25, 2024
1 parent 2285a2c commit bd98726
Show file tree
Hide file tree
Showing 5 changed files with 1,368 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/Bundles/CollectionEqualityComparison.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// This Source Code form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

namespace Bundles;

/// <summary>
/// Specifies means to compare equality of collections.
/// </summary>
public enum CollectionEqualityComparison
{
/// <summary>
/// Equals if the metadata and data references equal.
/// </summary>
Reference,

/// <summary>
/// Equals if the metadata and data values equal.
/// </summary>
Value,

/// <summary>
/// Equals if the right-hand collection is a slice of the left-hand collection.
/// </summary>
Slice
}
Loading

0 comments on commit bd98726

Please sign in to comment.