You are here: Start » AVL.NET » Function Reference » Path » Path Basics » AVL.SkipEmptyPath

AVL.SkipEmptyPath

If the input path has at least one point, then it is copied to the output; otherwise Nil is returned.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SkipEmptyPath
(
	AvlNet.Path inPath,
	INullable<AvlNet.Path> outNotEmptyPath,
	out bool outIsNotEmpty
)

Parameters

Name Type Range Default Description
inPathAvlNet.PathInput path.
outNotEmptyPathAvlNet.INullable<AvlNet.Path>A copy of the input path, if it is not empty, or Nil otherwise. This parameter cannot be null.
outIsNotEmptyboolIndication if the input path is not empty.

See also