1 write to _getters
Microsoft.ML.Data (1)
DataView\SimpleRow.cs (1)
45_getters = getters ?? new Delegate[0];
4 references to _getters
Microsoft.ML.Data (4)
DataView\SimpleRow.cs (4)
57Contracts.CheckParam(column.Index < _getters.Length, nameof(column), "Invalid col value in GetGetter"); 59if (_getters[column.Index] is ValueGetter<TValue> fn) 69Contracts.Check(column.Index < _getters.Length); 70return _getters[column.Index] != null;