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