Table of Contents

Interface IDistanceValue<T>

Namespace
Utils.Expressions
Assembly
Utils.dll

Represents a pairing of a distance measure and a value, typically used for scoring or ranking operations in method or constructor selection.

public interface IDistanceValue<T>

Type Parameters

T

The type of the associated value.

Extension Methods

Properties

Distance

Gets the numeric distance for this entry, typically used for ranking.

int Distance { get; }

Property Value

int

Value

Gets the value associated with this distance.

T Value { get; }

Property Value

T