-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
native aligned array (unsafe hell time)
- Loading branch information
1 parent
2285a2c
commit bd98726
Showing
5 changed files
with
1,368 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
Oops, something went wrong.