IEqualityComparerExpression<T> Interface

Definition

An interface that provides an expression-based way to specify the same thing that IComparer<T> does: a function for equality and a function for computing a hash.

public interface IEqualityComparerExpression<T>
type IEqualityComparerExpression<'T> = interface
Public Interface IEqualityComparerExpression(Of T)

Type Parameters

T

The type over which equality is being defined.

Derived

Methods

GetEqualsExpr()

A function encoding equality over type T

GetGetHashCodeExpr()

A function that computes a hash value over type T

Applies to