Interface ISparseEnumerator<T>
Contract for sparse enumeration
Inherited Members
Namespace: Microsoft.ML.Probabilistic.Collections
Assembly: Microsoft.ML.Probabilistic.dll
Syntax
public interface ISparseEnumerator<T> : IEnumerator<T>, IEnumerator, IDisposable
Type Parameters
Name | Description |
---|---|
T |
Properties
CommonValue
The common value for the sparse enumeration
Declaration
T CommonValue { get; }
Property Value
Type | Description |
---|---|
T |
CommonValueCount
Current common value count
Declaration
int CommonValueCount { get; }
Property Value
Type | Description |
---|---|
Int32 |
CurrentIndex
Current index. If past end of list, current index shows count
Declaration
int CurrentIndex { get; }
Property Value
Type | Description |
---|---|
Int32 |