A delegate which represents an arbitrary static figure of merit.
Namespace:
AGI.Foundation.Coverage.FigureOfMerit
Assembly:
AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public delegate T FigureOfMerit<T>(
CoverageQueryResult coverageIntervals
)
where T : Object, IComparable<T>
Public Delegate Function FigureOfMerit(Of T As {Object, IComparable(Of T)}) (
coverageIntervals As CoverageQueryResult
) As T
generic<typename T>
where T : Object, IComparable<T>
public delegate T FigureOfMerit(
CoverageQueryResult^ coverageIntervals
)
type FigureOfMerit =
delegate of
coverageIntervals : CoverageQueryResult -> 'T
Parameters
- coverageIntervals
- Type: AGI.Foundation.CoverageCoverageQueryResult
The data on the coverage intervals to analyze.
Type Parameters
- T
- The type of value produced by the figure of merit.
Return Value
Type:
TThe figure of merit value.
See Also