3 instantiations of TypeWithAttributes
Microsoft.ML.Data (3)
Data\DataViewTypeManager.cs (3)
74
var rawType = new
TypeWithAttributes
(type, typeAttr);
109
var rawType = new
TypeWithAttributes
(type, typeAttr);
184
var rawType = new
TypeWithAttributes
(type, typeAttribute);
10 references to TypeWithAttributes
Microsoft.ML.Data (10)
Data\DataViewTypeManager.cs (10)
39
private static readonly Dictionary<
TypeWithAttributes
, DataViewType> _rawTypeToDataViewTypeMap = new Dictionary<
TypeWithAttributes
, DataViewType>();
44
private static readonly Dictionary<DataViewType,
TypeWithAttributes
> _dataViewTypeToRawTypeMap = new Dictionary<DataViewType,
TypeWithAttributes
>();
74
var
rawType = new TypeWithAttributes(type, typeAttr);
109
var
rawType = new TypeWithAttributes(type, typeAttr);
184
var
rawType = new TypeWithAttributes(type, typeAttribute);
217
/// An instance of <see cref="
TypeWithAttributes
"/> represents an unique key of its <see cref="TargetType"/> and <see cref="_associatedAttribute"/>.
228
/// a key when using <see cref="
TypeWithAttributes
"/> as the key type in <see cref="Dictionary{TKey, TValue}"/>. Note that the
241
if (obj is
TypeWithAttributes
other)