8 implementations of IUnaryOneToTwoOperator
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (8)
207
private readonly struct WidenSingleToDoubleOperator :
IUnaryOneToTwoOperator
<float, double>
229
private readonly struct WidenByteToUInt16Operator :
IUnaryOneToTwoOperator
<byte, ushort>
319
private readonly struct WidenSByteToInt16Operator :
IUnaryOneToTwoOperator
<sbyte, short>
330
private readonly struct WidenUInt16ToUInt32Operator :
IUnaryOneToTwoOperator
<ushort, uint>
341
private readonly struct WidenInt16ToInt32Operator :
IUnaryOneToTwoOperator
<short, int>
352
private readonly struct WidenUInt32ToUInt64Operator :
IUnaryOneToTwoOperator
<uint, ulong>
363
private readonly struct WidenInt32ToInt64Operator :
IUnaryOneToTwoOperator
<int, long>
373
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>