1 write to _boundaries
Microsoft.ML.Data (1)
DataLoadSave\Binary\Codecs.cs (1)
322
_boundaries
= new List<int>();
4 references to _boundaries
Microsoft.ML.Data (4)
DataLoadSave\Binary\Codecs.cs (4)
329
_boundaries
.Add(_builder.Length);
336
Writer.Write(
_boundaries
.Count); // Write the number of entries.
337
Writer.WriteIntStream(
_boundaries
); // Write the entries end boundaries, in character counts.
347
return sizeof(int) * (1 + (long)
_boundaries
.Count) + _builder.Length;