You are here: Start » AVL.NET » Function Reference » Path » Path Classification » AVL.GetMaximumPath_OrNil

AVL.GetMaximumPath_OrNil

Returns the path from the input array that corresponds to the largest computed feature value; returns NIL if the array or any path inside it is empty.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void GetMaximumPath_OrNil
(
	IList<AvlNet.Path> inPaths,
	AvlNet.PathFeature inFeature,
	INullable<AvlNet.Path> outPath,
	out float? outValue,
	out int? outIndex
)

Parameters

Name Type Range Default Description
inPathsSystem.Collections.Generic.IList<AvlNet.Path>Input paths.
inFeatureAvlNet.PathFeaturePath feature value to be computed.
outPathAvlNet.INullable<AvlNet.Path>Output path. This parameter cannot be null.
outValuefloat?Computed feature value of the output path.
outIndexint?

See also