13 instantiations of UnsafeTypeCodec
Microsoft.ML.Data (13)
DataLoadSave\Binary\CodecFactory.cs (13)
48RegisterSimpleCodec(new UnsafeTypeCodec<sbyte>(this)); 49RegisterSimpleCodec(new UnsafeTypeCodec<byte>(this)); 50RegisterSimpleCodec(new UnsafeTypeCodec<short>(this)); 51RegisterSimpleCodec(new UnsafeTypeCodec<ushort>(this)); 52RegisterSimpleCodec(new UnsafeTypeCodec<int>(this)); 53RegisterSimpleCodec(new UnsafeTypeCodec<uint>(this)); 54RegisterSimpleCodec(new UnsafeTypeCodec<long>(this)); 55RegisterSimpleCodec(new UnsafeTypeCodec<ulong>(this)); 56RegisterSimpleCodec(new UnsafeTypeCodec<float>(this)); 57RegisterSimpleCodec(new UnsafeTypeCodec<double>(this)); 58RegisterSimpleCodec(new UnsafeTypeCodec<TimeSpan>(this)); 63RegisterSimpleCodec(new UnsafeTypeCodec<DataViewRowId>(this)); 69RegisterOtherCodec("DvTimeSpan", new UnsafeTypeCodec<TimeSpan>(this).GetCodec);
2 references to UnsafeTypeCodec
Microsoft.ML.Data (2)
DataLoadSave\Binary\Codecs.cs (2)
189public Writer(UnsafeTypeCodec<T> codec, Stream stream) 240public Reader(UnsafeTypeCodec<T> codec, Stream stream, int items)