Table of Contents

Enum CollectionComparerOptions

Namespace
PolyType.Abstractions
Assembly
PolyType.dll

The kinds of comparers that may be supplied to a collection's constructor.

public enum CollectionComparerOptions

Fields

Comparer = 2

The collection accepts a custom IComparer<T> for sorting and/or equality checks.

EqualityComparer = 1

The collection accepts a custom IEqualityComparer<T> for hashing and/or equality checks.

None = 0

The collection has no recognizable support for custom comparers.