4 writes to _ichNext
Microsoft.ML.Transforms (4)
Expression\CharCursor.cs (4)
44_ichNext = 0; 60return ChCur = _buffer[_ichNext++]; 65_ichNext++; // This is so the final IchCur is reported correctly. 100_ichNext = 0;
9 references to _ichNext
Microsoft.ML.Transforms (9)
Expression\CharCursor.cs (9)
23public int IchCur => _ichBase + _ichNext - 1; 57if (_ichNext < _ichLim || EnsureMore()) 59Contracts.Assert(_ichNext < _ichLim); 72Contracts.Assert(0 < dich && dich <= _ichLim - _ichNext + 1); 74int ich = dich + _ichNext - 1; 79ich = dich + _ichNext - 1; 93if (_ichNext > 0) 96int ichSrc = _ichNext; 99_ichBase += _ichNext;