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
TThe 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
Value
Gets the value associated with this distance.
T Value { get; }
Property Value
- T