3 writes to _index
Microsoft.ML.Data (3)
Data\DataViewUtils.cs (3)
903
++
_index
;
938
_index
= 0;
951
_index
= 0;
8 references to _index
Microsoft.ML.Data (8)
Data\DataViewUtils.cs (8)
855
public int Remaining => _count -
_index
;
902
Contracts.Assert(
_index
< _count);
931
Contracts.Assert(_count == 0 || (
_index
== _count - 1));
944
Contracts.Assert(
_index
<= _count);
972
Contracts.Check(
_index
< _count, "Cannot get value as the cursor is not in a good state");
973
Values[
_index
].CopyTo(ref value);
986
Contracts.Check(
_index
< _count, "Cannot get value as the cursor is not in a good state");
987
value = Values[
_index
];