You are here: Start » AVL.NET » Function Reference » Histogram » Histogram Basics » AVL.SkipEmptyHistogram

AVL.SkipEmptyHistogram

If the input histogram contains at least one bin, then it is copied to the output; otherwise Nil is returned.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SkipEmptyHistogram
(
	AvlNet.Histogram inHistogram,
	INullable<AvlNet.Histogram> outNotEmptyHistogram,
	out bool outIsNotEmpty
)

Parameters

Name Type Range Default Description
inHistogramAvlNet.HistogramInput histogram.
outNotEmptyHistogramAvlNet.INullable<AvlNet.Histogram>The histogram, if it is not empty. This parameter cannot be null.
outIsNotEmptyboolIndication if the input histogram is not empty.

See also