8 implementations of IUnaryOneToTwoOperator
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (8)
209private readonly struct WidenSingleToDoubleOperator : IUnaryOneToTwoOperator<float, double> 231private readonly struct WidenByteToUInt16Operator : IUnaryOneToTwoOperator<byte, ushort> 321private readonly struct WidenSByteToInt16Operator : IUnaryOneToTwoOperator<sbyte, short> 332private readonly struct WidenUInt16ToUInt32Operator : IUnaryOneToTwoOperator<ushort, uint> 343private readonly struct WidenInt16ToInt32Operator : IUnaryOneToTwoOperator<short, int> 354private readonly struct WidenUInt32ToUInt64Operator : IUnaryOneToTwoOperator<uint, ulong> 365private readonly struct WidenInt32ToInt64Operator : IUnaryOneToTwoOperator<int, long> 375private readonly struct WidenHalfAsInt16ToSingleOperator : IUnaryOneToTwoOperator<short, float>
1 reference to IUnaryOneToTwoOperator
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\Common\TensorPrimitives.IUnaryOneToTwoOperator.cs (1)
31where TUnaryOperator : struct, IUnaryOneToTwoOperator<TInput, TOutput>