Click or drag to resize

MappedFrequentPatternCompareTo Method

Compares this instance to another MappedFrequentPattern instance.

Namespace: Ookii.Jumbo.Jet.Samples.FPGrowth
Assembly: Ookii.Jumbo.Jet.Samples (in Ookii.Jumbo.Jet.Samples.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public int CompareTo(
	MappedFrequentPattern? other
)

Parameters

other  MappedFrequentPattern
The MappedFrequentPattern to compare to..

Return Value

Int32
Less than 0 if this instance is less than other, 0 if they are equal, or 1 if this instance is greater than other.

Implements

IComparableTCompareTo(T)
Remarks

The comparison is done based on the support and then number of items. The values of the items are not considered.

See Also