1 write to _type2ops
Microsoft.ML.Data (1)
DataLoadSave\Binary\UnsafeTypeOps.cs (1)
32_type2ops = new Dictionary<Type, object>();
13 references to _type2ops
Microsoft.ML.Data (13)
DataLoadSave\Binary\UnsafeTypeOps.cs (13)
33_type2ops[typeof(sbyte)] = new SByteUnsafeTypeOps(); 34_type2ops[typeof(Byte)] = new ByteUnsafeTypeOps(); 35_type2ops[typeof(short)] = new Int16UnsafeTypeOps(); 36_type2ops[typeof(UInt16)] = new UInt16UnsafeTypeOps(); 37_type2ops[typeof(int)] = new Int32UnsafeTypeOps(); 38_type2ops[typeof(UInt32)] = new UInt32UnsafeTypeOps(); 39_type2ops[typeof(long)] = new Int64UnsafeTypeOps(); 40_type2ops[typeof(UInt64)] = new UInt64UnsafeTypeOps(); 41_type2ops[typeof(Single)] = new SingleUnsafeTypeOps(); 42_type2ops[typeof(Double)] = new DoubleUnsafeTypeOps(); 43_type2ops[typeof(TimeSpan)] = new TimeSpanUnsafeTypeOps(); 44_type2ops[typeof(DataViewRowId)] = new UgUnsafeTypeOps(); 49return (UnsafeTypeOps<T>)_type2ops[typeof(T)];