3 references to ShiftLeft
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\Tensor.op_LeftShift.cs (3)
44
public static Tensor<TScalar> operator <<(in ReadOnlyTensorSpan<TScalar> tensor, int shiftAmount) =>
ShiftLeft
(tensor, shiftAmount);
52
public static Tensor<TScalar> operator <<(Tensor<TScalar> tensor, int shiftAmount) =>
ShiftLeft
<TScalar>(tensor, shiftAmount);
69
public static Tensor<TScalar> operator <<(in TensorSpan<TScalar> tensor, int shiftAmount) =>
ShiftLeft
<TScalar>(tensor, shiftAmount);