1 override of Length
Microsoft.ML.Data (1)
DataView\ArrayDataViewBuilder.cs (1)
391
public override int
Length
{ get { return _values.Length; } }
3 references to Length
Microsoft.ML.Data (3)
DataView\ArrayDataViewBuilder.cs (3)
32
return _columns[0].
Length
;
55
if (_columns.Count > 0 && values.Length != _columns[0].
Length
)
56
throw _host.Except("Previous inputs were of length {0}, but new input is of length {1}", _columns[0].
Length
, values.Length);